Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0664.cs
1 // CS0664: 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 }