(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0152.cs
blobbf2c3e520eccc3384b8f8f7a7c8fb3e8657d4bec
1 // cs0152.cs: The label `case X:' 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;