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