Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0158-6.cs
1 // CS0158: The label `a' shadows another label by the same name in a contained scope
2 // Line: 11
3
4 class Foo
5 {
6         static void Main ()
7         {
8                 int i = 1;
9                 goto a;
10                 if (i == 9) {
11                         a:
12                         return;
13                 }
14 a:
15                 return;
16         }
17 }