1d615dfda ^
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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