[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0019-71.cs
blob6deead2af8013b2ee4aa4a16da098d7558f8ea79
1 // CS0019: Operator `==' cannot be applied to operands of type `External' and `int'
2 // Line: 11
3 // Compiler options: -r:CS0019-71-lib.dll
5 class X
7 public static void Main ()
9 var t1 = new External ();
10 int t2 = 0;
11 bool b = t1 == t2;