This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix occasional op/time.t failure
[perl5.git] / t / lib / NoExporter.pm
CommitLineData
30e302f8
NC
1package NoExporter;
2
3$VERSION = 1.02;
4sub import {
5 shift;
6 die "NoExporter exports nothing. You asked for: @_" if @_;
7}
8
91;
10