blob: db5871c441d64e528f7b1aafec0258546c66c3ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!./perl -w
BEGIN {
chdir 't' if -d 't';
require './test.pl';
set_up_inc('../lib');
}
plan tests => 1;
ok(defined [(1)x127,qr//,1]->[127], "qr// should extend the stack properly");
|