xref: /openbsd-src/gnu/usr.bin/perl/t/lib/caller/Foo.pm (revision 53555c846a0a6f917dbd0a191f826da995ab1c42)
1# for use by caller.t for GH #15109
2
3package Foo;
4
5sub import {
6    use warnings; # restore default warnings
7    () = caller(1); # this used to cause valgrind errors
8}
91;
10