This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Let's remove the grep in void context warning.
[perl5.git] / t / lib / NoExporter.pm
1 package NoExporter;
2
3 $VERSION = 1.02;
4 sub import { 
5     shift;
6     die "NoExporter exports nothing.  You asked for: @_" if @_;
7 }
8
9 1;
10