10 lines
134 B
C#
Raw Normal View History

// CS0029: Cannot implicitly convert type `bool' to `int'
// Line : 7
class T {
static int Main ()
{
int a = default(bool);
}
}