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: d865b5572b8ef200bba2f036b4297e087bdd3f64 (plain)
1
2
3
4
5
6
7
8
9
10
class Foo {
	public static void Main ()
	{
		int a = 0;
		int b = 5;
		a += -b;
		if (a != -5)
			throw new System.Exception ();
	}
}