summary refs log tree commit diff stats
path: root/tests/ccgbugs/t10964.nim
blob: a331b16cdc84b5d4a86c794415b28223634aaf7d (plain) (blame)
1
2
3
4
5
6
func test*(input: var openArray[int32], start: int = 0, fin: int = input.len - 1) =
    discard

var someSeq = @[1'i32]

test(someSeq)