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

cs0164.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d36a93f2c1a1caa15f144a0844211571ba560839 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0164.cs: This label has not been referenced
// Line: 7
// Compiler options: -warnaserror -warn:2

class X {
	static void Main () {
		a:
			return;
	}
}