2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-517.cs
blobd734691b526fecbf2ba4e53b10de548de74a142a
1 // Compiler options: -warnaserror -warn:2
3 class Test {
4 public static int Main ()
6 int i = 1;
7 goto lbl;
8 lbl:
9 i = 0;
10 return i;