blob: b6078ada2288bf43f77f49ca58c5b3a99efe16c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
discard """
outputsub: "index 2 not in 0 .. 0 [IndexError]"
exitcode: 1
cmd: "nim c --gc:arc --exceptions:setjmp $file"
"""
# bug #12961
# --gc:arc --exceptions:setjmp
let a = @[1]
echo a[2]
|