diff options
Diffstat (limited to 'tests/run/tuserassert.nim')
-rw-r--r-- | tests/run/tuserassert.nim | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/run/tuserassert.nim b/tests/run/tuserassert.nim deleted file mode 100644 index cf12c4e8b..000000000 --- a/tests/run/tuserassert.nim +++ /dev/null @@ -1,13 +0,0 @@ -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) - |