Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

13 lines
247 B
C#

// CS0019: Operator `==' cannot be applied to operands of type `External' and `int'
// Line: 11
// Compiler options: -r:CS0019-71-lib.dll
class X
{
public static void Main ()
{
var t1 = new External ();
int t2 = 0;
bool b = t1 == t2;
}
}