Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0140.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03a2fc55af25347342a91dbddda800d5696e649e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0140: A duplicated Label.
// Line: 11 

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