Files
Nim/tests/ccgbugs/tmissingvolatile.nim
2016-05-11 17:11:55 +02:00

21 lines
284 B
Nim

discard """
output: "1"
cmd: r"nim c --hints:on $options -d:release $file"
ccodecheck: "'NI volatile state0;'"
"""
# bug #1539
proc err() =
raise newException(Exception, "test")
proc main() =
var state: int
try:
state = 1
err()
except:
echo state
main()