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