summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0152-3.cs
blob: 7c9b47b9c68cb8909c9b73fa0a82d53877a4fbec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0152: The label `case 0:' already occurs in this switch statement
// Line: 13

// https://bugzilla.novell.com/show_bug.cgi?id=363791

class Test {
  enum Foo { MUL, JL }
  static Foo f;
  public static void Main ()
  {
    switch (f) {
    case Foo.MUL: break;
    case Foo.MUL: break;
    }
  }
}