[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0019-6.cs
blob899ac53df2d77846f85760d886ea606defecb44d
1 // CS0019: Operator `==' cannot be applied to operands of type `A' and `B'
2 // Line : 21
4 enum A
6 A1,
7 A2
10 enum B
12 B1,
16 class C
18 static void Main ()
20 A a = A.A1;
21 System.Console.WriteLine (a == B.B1);