fix run-test
[mcs.git] / errors / cs0266.cs
blobce4cce70e8ae1e27e3a24e620a1267815fc3c30f
1 // cs0266.cs: Cannot implicitly convert type `Foo.MyEnumType' to `uint'. An explicit conversion exists (are you missing a cast?)
2 // Line: 11
4 public class Foo {
5 enum MyEnumType { MyValue }
7 public void Bar ()
9 uint my_uint_var = 0;
10 switch (my_uint_var) {
11 case MyEnumType.MyValue:
12 break;
13 default:
14 break;
18 static void Main () {}