diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-01-26 19:46:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 12:46:39 +0100 |
commit | f7c6e04cfbc44c225c123d724745840585561ac5 (patch) | |
tree | 89edabd6bb445dc6d02f8060eb78ca8ee279672e /tests/iter/titervaropenarray.nim | |
parent | 24a606902a4e99ac3d7f58b89db3b023061bc8b0 (diff) | |
download | Nim-f7c6e04cfbc44c225c123d724745840585561ac5.tar.gz |
fixes #19977; rework inlining of 'var openarray' iterators for C++ (#23258)
fixes #19977
Diffstat (limited to 'tests/iter/titervaropenarray.nim')
-rw-r--r-- | tests/iter/titervaropenarray.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/iter/titervaropenarray.nim b/tests/iter/titervaropenarray.nim index ad1192bd8..b2fe71ceb 100644 --- a/tests/iter/titervaropenarray.nim +++ b/tests/iter/titervaropenarray.nim @@ -1,6 +1,6 @@ discard """ output: "123" - targets: "c" + targets: "c cpp" """ # Try to break the transformation pass: iterator iterAndZero(a: var openArray[int]): int = |