summary refs log tree commit diff stats
path: root/tests/ccgbugs/t5296.nim
blob: 990b4bee290e5ef1e11f38a8d5fc4bef2d4ccfb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
discard """
cmd: "nim c -d:release $file"
output: 1
"""

proc bug() : void =
    var x = 0
    try:
        inc x
        raise new(Exception)
    except Exception:
        echo x

bug()