cleol
[mcs.git] / errors / cs0030-2.cs
blob036d8fdf79b6714c41a2b9800b941e83023036ac
1 // cs0030.cs : Cannot convert type `bool' to `float'
2 // Line : 12
4 public class Blah {
6 public static int Main ()
8 const bool k = false;
9 float f = (float) k;