remove debug writelines
[mcs.git] / errors / cs0140.cs
blobc465aaaf02165fb151c0e89e9ac6cfea91b73d4c
1 // cs0140.cs: 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;