Files
Nim/tests/assert/tuserassert.nim
2014-01-13 02:10:03 +01: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)