p4raw-id: //depot/perl@23516
my $var = $ary->sibling;
if ($ary->name eq 'null' and $enter->private & OPpITER_REVERSED) {
# "reverse" was optimised away
- $ary = "reverse " . $self->deparse($ary->first->sibling->first->sibling, 1);
+ $ary = listop($self, $ary->first->sibling, 1, 'reverse');
} elsif ($enter->flags & OPf_STACKED
and not null $ary->first->sibling->sibling)
{
use strict;
use Config;
-print "1..36\n";
+print "1..37\n";
use B::Deparse;
my $deparse = B::Deparse->new() or print "not ";
# 32
our @a;
print $_ foreach (reverse @a);
+####
+# 32
+our @a;
+print $_ foreach (reverse 1, 2..5);