xref: /openbsd-src/gnu/usr.bin/perl/t/lib/test_use.pm (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1#!perl -w
2# Don't use strict because this is for testing use
3
4package test_use;
5
6sub import {
7    shift;
8    @got = @_;
9}
10
111;
12