summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0164.cs
blob: d321f63d77017c4994ad647aa4c8b4fc991ac336 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0164: This label has not been referenced
// Line: 7
// Compiler options: -warnaserror -warn:2

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