Files
Nim/tests/stdlib/tunittestpass.nim
2020-12-27 09:16:53 +01:00

20 lines
283 B
Nim

discard """
targets: "c js"
"""
import unittest
block:
check (type(1.0)) is float
check type(1.0) is float
check (typeof(1)) isnot float
check typeof(1) isnot float
check 1.0 is float
check 1 isnot float
type T = type(0.1)
check T is float
check T isnot int