Incremented version number.
[mono.git] / mcs / errors / cs0029-2.cs
1 public class Foo {
2   enum MyEnumType { MyValue }
3
4   public void Bar ()
5   {
6     uint my_uint_var = 0;
7     switch (my_uint_var) {
8     case MyEnumType.MyValue:
9       break;
10     default:
11       break;
12     }
13   }
14
15   static void Main () {}
16 }
17
18
19
20
21
22