bug17.cs 124 B

12345678910
  1. //
  2. // Fixed
  3. //
  4. class X {
  5. static void Main ()
  6. {
  7. double x = 64.0;
  8. System.Console.WriteLine("x = " + x.ToBoolean(null));
  9. }
  10. }