Files
Nim/tests/assert/tuserassert.nim
2014-08-14 22:22:04 +02:00

14 lines
185 B
Nim

discard """
output: "x == 45ugh"
"""
template myAssert(cond: expr) =
when 3 <= 3:
let c = cond.astToStr
if not cond:
echo c, "ugh"
var x = 454
myAssert(x == 45)