With these new tests (73-79) we have completed the tests from CS0001 to
[mono.git] / mcs / errors / cs0664.cs
1 // cs0664.cs: Literal of type double cannot be implicity converted to Float, use F suffix
2 // Line: 6
3 class X {
4         void A ()
5         {
6                 float f = 2.0;
7         }
8 }