(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0140.cs
blob03a2fc55af25347342a91dbddda800d5696e649e
1 // cs0140: A duplicated Label.
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;