[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0152.cs
blob0efbb941cd6c973fba848a9c19e4cb220e16f7df
1 // CS0152: The label `case 1:' already occurs in this switch statement
2 // Line: 9
3 class X {
4 void f (int i)
6 switch (i){
7 case 1:
8 break;
9 case 1:
10 break;