New test.
[mono.git] / mcs / tests / test-517.cs
1 // Compiler options: -warnaserror -warn:2
2
3 class Test {
4         public static int Main ()
5         {
6                 int i = 1;
7                 goto lbl;
8         lbl:
9                 i = 0;
10                 return i;
11         }
12 }