Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-579.cs
1 // Compiler options: -warnaserror
2
3 public class TestCase
4 {
5         public static int Main ()
6         {
7                 int i = 0;
8                 {
9                         goto A;
10                         A:
11                                 i += 3;
12                 }
13                 {
14                         goto A;
15                         A:
16                                 i *= 4;
17                 }
18                 
19                 if (i != 12)
20                         return 1;
21                         
22                 return 0;
23         }
24 }