tunittestpass.nim 283 B

1234567891011121314151617181920
  1. discard """
  2. targets: "c js"
  3. """
  4. import unittest
  5. block:
  6. check (type(1.0)) is float
  7. check type(1.0) is float
  8. check (typeof(1)) isnot float
  9. check typeof(1) isnot float
  10. check 1.0 is float
  11. check 1 isnot float
  12. type T = type(0.1)
  13. check T is float
  14. check T isnot int