This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
toke.c: 'Scalar value %s better written as $%s' cleanup.
[perl5.git] / t / lib / test_use.pm
1 #!perl -w
2 # Don't use strict because this is for testing use
3
4 package test_use;
5
6 sub import {
7     shift;
8     @got = @_;
9 }
10
11 1;