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

cs0152.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf2c3e520eccc3384b8f8f7a7c8fb3e8657d4bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0152.cs: The label `case X:' already occurs in this switch statement
// Line: 9
class X {
	void f (int i)
	{
		switch (i){
		case 1:
			break;
		case 1:	
			break;
		}
	}
}