xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/lib/NoExporter.pm (revision b39c515898423c8d899e35282f4b395f7cad3298)
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