summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0140.cs
blob: afc799254b201d3f66d364eb6faff5b349884698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0140: The label `L1' is a duplicate
// Line: 11 

namespace CS0140Test
{
	public class A
	{
		static int Main ()
		{
			L1: int a=0;
			L1: a++;
			if (a < 3)
			goto L1;
			return 0;
		}
	}
}