diff options
Diffstat (limited to 'tests/arc/topt_refcursors.nim')
-rw-r--r-- | tests/arc/topt_refcursors.nim | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tests/arc/topt_refcursors.nim b/tests/arc/topt_refcursors.nim index 372fc18bf..f097150a3 100644 --- a/tests/arc/topt_refcursors.nim +++ b/tests/arc/topt_refcursors.nim @@ -3,17 +3,21 @@ discard """ cmd: '''nim c --gc:arc --expandArc:traverse --hint:Performance:off $file''' nimout: '''--expandArc: traverse -var it_cursor = root +var + it_cursor + jt_cursor +it_cursor = root block :tmp: while ( not (it_cursor == nil)): echo [it_cursor.s] it_cursor = it_cursor.ri -var jt_cursor = root +jt_cursor = root block :tmp_1: while ( not (jt_cursor == nil)): - let ri_1_cursor = jt_cursor.ri + var ri_1_cursor + ri_1_cursor = jt_cursor.ri echo [jt_cursor.s] jt_cursor = ri_1_cursor -- end of expandArc ------------------------''' |