mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
18 lines
194 B
Nim
18 lines
194 B
Nim
discard """
|
|
targets: "cpp"
|
|
"""
|
|
|
|
# issue #4834
|
|
block:
|
|
defer:
|
|
let x = 0
|
|
|
|
|
|
proc main() =
|
|
block:
|
|
defer:
|
|
raise newException(Exception, "foo")
|
|
|
|
doAssertRaises(Exception):
|
|
main()
|