cs0152.cs 178 B

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