summaryrefslogtreecommitdiff
path: root/t/lib/test_use.pm
blob: f1ed0b11c875aad7e9f5e9743532a425597307a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!perl -w
# Don't use strict because this is for testing use

package test_use;

sub import {
    shift;
    @got = @_;
}

1;