13 lines
170 B
C#
Raw Normal View History

// CS0030: Cannot convert type `bool' to `float'
// Line: 12
public class Blah {
public static int Main ()
{
const bool k = false;
float f = (float) k;
}
}