Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0140.cs
blobafc799254b201d3f66d364eb6faff5b349884698
1 // CS0140: The label `L1' is a duplicate
2 // Line: 11
4 namespace CS0140Test
6 public class A
8 static int Main ()
10 L1: int a=0;
11 L1: a++;
12 if (a < 3)
13 goto L1;
14 return 0;