2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0162-6.cs
blob7519ac6760cbca2730a301002bcfdd3cb87150e1
1 // cs0162-6.cs: Unreachable code detected
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 class Foo {
6 static void Main ()
8 goto skip;
9 a:
10 throw new System.Exception ();
11 goto a;
12 skip:
13 return;