mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-14 23:33:28 +00:00
* fix #16474 * more tests
This commit is contained in:
@@ -669,7 +669,8 @@ macro check*(conditions: untyped): untyped =
|
||||
let paramAst = exp[i]
|
||||
if exp[i].kind == nnkIdent:
|
||||
result.printOuts.add getAst(print(argStr, paramAst))
|
||||
if exp[i].kind in nnkCallKinds + {nnkDotExpr, nnkBracketExpr, nnkPar}:
|
||||
if exp[i].kind in nnkCallKinds + {nnkDotExpr, nnkBracketExpr, nnkPar} and
|
||||
(exp[i].typeKind notin {ntyTypeDesc} or $exp[0] notin ["is", "isnot"]):
|
||||
let callVar = newIdentNode(":c" & $counter)
|
||||
result.assigns.add getAst(asgn(callVar, paramAst))
|
||||
result.check[i] = callVar
|
||||
|
||||
19
tests/stdlib/tunittestpass.nim
Normal file
19
tests/stdlib/tunittestpass.nim
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user