diff options
author | flywind <xzsflywind@gmail.com> | 2021-03-05 02:33:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 19:33:16 +0100 |
commit | e1cc3b83fba0bc66790959d3cd84d70464c31e4f (patch) | |
tree | 80eb07c8be4d7e5ab60033afc9b0579a4ebe8fec /tests/destructor/tarray_indexing.nim | |
parent | 2e3d324cc6d2bb923af6acaa2a5fd8da4ca9c286 (diff) | |
download | Nim-e1cc3b83fba0bc66790959d3cd84d70464c31e4f.tar.gz |
deprecate newruntime (#17245)
* deprecate newruntime * tests * Update compiler/commands.nim
Diffstat (limited to 'tests/destructor/tarray_indexing.nim')
-rw-r--r-- | tests/destructor/tarray_indexing.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/destructor/tarray_indexing.nim b/tests/destructor/tarray_indexing.nim index 7efd5a00c..657101c4d 100644 --- a/tests/destructor/tarray_indexing.nim +++ b/tests/destructor/tarray_indexing.nim @@ -1,7 +1,7 @@ discard """ output: '''allocating 1048576 65536 filling page from 1048576 len 65536''' - cmd: '''nim c --newruntime $file''' + cmd: '''nim c --gc:arc $file''' """ # bug #12669 |