2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0152-3.cs
blob7c9b47b9c68cb8909c9b73fa0a82d53877a4fbec
1 // CS0152: The label `case 0:' already occurs in this switch statement
2 // Line: 13
4 // https://bugzilla.novell.com/show_bug.cgi?id=363791
6 class Test {
7 enum Foo { MUL, JL }
8 static Foo f;
9 public static void Main ()
11 switch (f) {
12 case Foo.MUL: break;
13 case Foo.MUL: break;