15 lines
154 B
C#
Raw Normal View History

// CS0029: Cannot implicitly convert type `X' to `bool'
// Line : 11
class X {
}
class T {
static void Main ()
{
X x = new X ();
if (x){
}
}
}