Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-193.cs
1 using System;
2
3 class A
4 {
5         static int Test (int i)
6         {
7                 switch (i) {
8                 case 1:
9                         Console.WriteLine ("1");
10                         if (i > 0)
11                                 goto LBL4;
12                         Console.WriteLine ("2");
13                         break;
14
15                 case 3:
16                         Console.WriteLine ("3");
17                 LBL4:
18                         Console.WriteLine ("4");
19                         return 0;
20                 }
21
22                 return 1;
23         }
24
25         public static int Main ()
26         {
27                 return Test (1);
28         }
29 }