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