Files
Nim/tests/run/tuserassert.nim

14 lines
183 B
Nim

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