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: 4d5aad769e29331cfb5837dd4c5ab8ee4ef3eca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0152.cs: The label `case 1:' already occurs in this switch statement
// Line: 9
class X {
	void f (int i)
	{
		switch (i){
		case 1:
			break;
		case 1:	
			break;
		}
	}
}