mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
22 lines
248 B
Nim
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
|