summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0162-6.cs
blob: a7b1a3ade55c19f211f8707d89577be816e12d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0162: Unreachable code detected
// Line: 9
// Compiler options: -warnaserror -warn:2

class Foo {
	static void Main ()
	{
		goto skip;
	a:
		throw new System.Exception ();
		goto a;
	skip:
		return;
	}
}