This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
avoid initializing GvCV slot for autovivified filehandles
[perl5.git] / t / lib / tie-stdarray.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     unshift @INC, '../lib';
6 }
7
8 use Tie::Array;
9 tie @foo,Tie::StdArray;
10 tie @ary,Tie::StdArray;
11 tie @bar,Tie::StdArray;
12 require "op/array.t"