summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0152.cs
blob: 0efbb941cd6c973fba848a9c19e4cb220e16f7df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0152: 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;
		}
	}
}