from ().
p4raw-id: //depot/perl@25920
#!./perl
-print "1..30\n";
+print "1..31\n";
@foo = (1, 2, 3, 4);
if ($foo[0] == 1 && $foo[3] == 4) {print "ok 1\n";} else {print "not ok 1\n";}
@b = (30, scalar @h{()});
print "not " if join(':',@b) ne '30:';
print "ok 30\n";
+
+ my @d = ()[1..1];
+ print "not " if @d != undef;
+ print "ok 31\n";
}