mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-28 01:21:40 +00:00
blocks https://github.com/nim-lang/Nim/pull/23673 --------- Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
7 lines
158 B
Nim
7 lines
158 B
Nim
func test*(input: var openArray[int32], start: int = 0, fin: int = input.len - 1) =
|
|
discard
|
|
|
|
var someSeq = @[1'i32]
|
|
|
|
test(someSeq)
|
|
# bug with gcc 14 |