xref: /openbsd-src/gnu/usr.bin/perl/t/lib/caller/Foo.pm (revision f2a19305cfc49ea4d1a5feb55cd6c283c6f1e031)
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