[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0019-5.cs
blob24451df25831b8ef24f17aa98ad9158709de80fa
1 // CS0019: Operator `==' cannot be applied to operands of type `X' and `Y'
2 // Line : 13
4 class X {
7 class Y {
10 class T {
11 static void Main ()
13 X x = new X ();
14 Y y = new Y ();
16 if (x == y){