Files
Nim/tests/ccgbugs/t5296.nim
2021-11-12 11:19:24 +01:00

22 lines
248 B
Nim

discard """
cmd: "nim c -d:release $file"
output: '''1
-1'''
"""
proc bug() : void =
var x = 0
try:
inc x
raise new(Exception)
except Exception:
echo x
bug()
# bug #19051
type GInt[T] = int
var a = 1
echo -a