summary refs log tree commit diff stats
path: root/tests/tassert.nim
blob: 9fd18e9bdf6908ff399bb009ee2c30471c6bca1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# test assert and exception handling

proc callB() = assert(False)
proc callA() = callB()
proc callC() = callA()

try:
  callC()
except EAssertionFailed:
  write(stdout, "assertion failure!")
except:
  write(stdout, "unknown exception!")
finally:
  system.write(stdout, "this shall be always written")

assert(false) #OUT assertion failure!this shall be always written