[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0029-3.cs
1 // CS0029: Cannot implicitly convert type `string' to `int'
2 // Line : 7
3
4 public class Blah {
5
6         public enum MyEnum {
7                 Foo = "foo",
8                 Bar
9         }
10
11         public static void Main ()
12         {
13         }
14 }