xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/lib/NoExporter.pm (revision b39c515898423c8d899e35282f4b395f7cad3298)
1*b39c5158Smillertpackage NoExporter;
2*b39c5158Smillert
3*b39c5158Smillertuse strict;
4*b39c5158Smillertour $VERSION = 1.02;
5*b39c5158Smillert
6*b39c5158Smillertsub import {
7*b39c5158Smillert    shift;
8*b39c5158Smillert    die "NoExporter exports nothing.  You asked for: @_" if @_;
9*b39c5158Smillert}
10*b39c5158Smillert
11*b39c5158Smillert1;
12*b39c5158Smillert
13