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()