cs0664.cs 147 B

12345678
  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. }