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