tunittestpass.nim 315 B

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