mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
385 B
Nim
Executable File
17 lines
385 B
Nim
Executable File
# 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
|