Move Test::Simple from lib to ext.
[p5sagit/p5-mst-13.2.git] / ext / Test-Simple / t / lib / NoExporter.pm
CommitLineData
30e302f8 1package NoExporter;
2
3e887aae 3use strict;
4our $VERSION = 1.02;
ccbd73a4 5
6sub import {
30e302f8 7 shift;
8 die "NoExporter exports nothing. You asked for: @_" if @_;
9}
10
111;
12