"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0158-6.cs
blob6fc139af394f14e81a4fd7ecdbb0ac332ae2f6ce
1 // CS0158: The label `a' shadows another label by the same name in a contained scope
2 // Line: 11
4 class Foo
6 static void Main ()
8 int i = 1;
9 goto a;
10 if (i == 9) {
12 return;
15 return;