mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-20 06:20:38 +00:00
* fixes #20746; remove string copies for ORC booted compiler * add a test case * use `cursor` thanks to @beef331 * for old compilers * change file extension * change test cases
This commit is contained in:
13
tests/vm/t20746.nim
Normal file
13
tests/vm/t20746.nim
Normal file
@@ -0,0 +1,13 @@
|
||||
discard """
|
||||
timeout: 10
|
||||
joinable: false
|
||||
output: "fine"
|
||||
"""
|
||||
|
||||
func addString(): string =
|
||||
let x = newString(1000000)
|
||||
for i in 0..<1000000:
|
||||
discard x[i]
|
||||
|
||||
const translationTable = addString()
|
||||
echo "fine"
|
||||
Reference in New Issue
Block a user