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