[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / test-854.cs
blob32954ba6adad14996a1077dba858796c17156efa
1 using System;
3 public class Test {
5 public static int Main ()
7 int a = 2;
8 int res = 0;
9 switch(a) {
10 case 1:
11 res += 1;
12 label:
13 res += 3;
14 break;
15 case 2:
16 res += 2;
17 goto label;
20 if (res != 5)
21 return 1;
23 return 0;