This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
make setpgrpstack.t use skip_all_without_config
[perl5.git] / t / lib / test_use.pm
CommitLineData
dd90d555
NC
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;