http://qs1969.pair.com?node_id=946672


in reply to Re^10: ref to read-only alias ... why? (notabug)
in thread ref to read-only alias ... why?

Expected result:
Expected Current for (1..2) { for (1) { my $r = \$_; ++$$r; say $$r; 2 2 2 2 (threaded) } [die] (non-threaded) } for (1..2) { for (1) { ++$_; say; 2 2 [die] } } for (1..2) { for (1..3) { ++$_; say; 234 234 234 345 } }