merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / errors / cs0664.cs
1 // cs0664.cs: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
2 // Line: 6
3 class X {
4         void A ()
5         {
6                 float f = 2.0;
7         }
8 }