diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-06-04 15:43:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 09:43:12 +0200 |
commit | 17475fc5d3f1f198e1038ca35b4c2a4b48b2379a (patch) | |
tree | 9b4070094627e0512e11d172349095644cc3d0d5 /tests/ccgbugs | |
parent | d22e8f7f82cc479c9abb90a52994aa7134b6dda5 (diff) | |
download | Nim-17475fc5d3f1f198e1038ca35b4c2a4b48b2379a.tar.gz |
fixes openarray hoist with gcc 14 (#23647)
blocks https://github.com/nim-lang/Nim/pull/23673 --------- Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Diffstat (limited to 'tests/ccgbugs')
-rw-r--r-- | tests/ccgbugs/t10964.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ccgbugs/t10964.nim b/tests/ccgbugs/t10964.nim index a331b16cd..c19db6997 100644 --- a/tests/ccgbugs/t10964.nim +++ b/tests/ccgbugs/t10964.nim @@ -3,4 +3,5 @@ func test*(input: var openArray[int32], start: int = 0, fin: int = input.len - 1 var someSeq = @[1'i32] -test(someSeq) \ No newline at end of file +test(someSeq) +# bug with gcc 14 \ No newline at end of file |