Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-576.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcf74ad75669d4921cf8d021b812a6127b92dda2 (plain)
1
2
3
4
5
6
7
8
9
10
class Foo {
	static void Main ()
	{
		int a = 0;
		int b = 5;
		a += -b;
		if (a != -5)
			throw new System.Exception ();
	}
}