[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0165-50.cs
blob1695000e74601f6a4ce6f8fe2288612908aa628c
1 // CS0165: Use of unassigned local variable `u'
2 // Line: 15
4 class X
6 public static void Main ()
8 int i = 0;
9 int u;
10 switch (i) {
11 case 1:
12 A1:
13 goto case 2;
14 case 2:
15 i = u;
16 goto case 3;
17 case 3:
18 goto case 4;
19 case 4:
20 goto A1;