codeowners update
[mono.git] / mcs / errors / cs0140.cs
1 // CS0140: The label `L1' is a duplicate
2 // Line: 11 
3
4 namespace CS0140Test
5 {
6         public class A
7         {
8                 static int Main ()
9                 {
10                         L1: int a=0;
11                         L1: a++;
12                         if (a < 3)
13                         goto L1;
14                         return 0;
15                 }
16         }
17 }