Updated with review feedback.
[mono.git] / mcs / errors / cs0030-2.cs
1 // CS0030: Cannot convert type `bool' to `float'
2 // Line: 12
3
4 public class Blah {
5
6         public static int Main ()
7         {
8                 const bool k = false;           
9                 float f = (float) k;
10                 
11         }
12 }