xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/lib/NoExporter.pm (revision 4c1e55dc91edd6e69ccc60ce855900fbc12cf34f)
1package NoExporter;
2
3use strict;
4our $VERSION = 1.02;
5
6sub import {
7    shift;
8    die "NoExporter exports nothing.  You asked for: @_" if @_;
9}
10
111;
12
13