Files
Nim/tests/run/tuserassert.nim
2012-07-09 00:54:46 +02:00

14 lines
190 B
Nim

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