xref: /openbsd-src/gnu/usr.bin/perl/t/re/qrstack.t (revision 5759b3d249badf144a6240f7eec4dcf9df003e6b)
1#!./perl -w
2
3BEGIN {
4    chdir 't' if -d 't';
5    require './test.pl';
6    set_up_inc('../lib');
7}
8
9plan tests => 1;
10
11ok(defined [(1)x127,qr//,1]->[127], "qr// should extend the stack properly");
12