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

test-517.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d734691b526fecbf2ba4e53b10de548de74a142a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: -warnaserror -warn:2

class Test {
	public static int Main ()
	{
		int i = 1;
		goto lbl;
	lbl:
		i = 0;
		return i;
	}
}