]> git.vpit.fr Git - perl/modules/autovivification.git/blob - t/lib/autovivification/TestRequired6.pm
Improve the require propagation workaround
[perl/modules/autovivification.git] / t / lib / autovivification / TestRequired6.pm
1 package autovivification::TestRequired6;
2
3 sub new { bless {} }
4
5 sub bar {
6  exists $main::blurp->{bar};
7 }
8
9 sub baz {
10  eval q[exists $main::blurp->{baz}];
11 }
12
13 1;