5eb2b3be90a6eb09a7fb278dd9ec869ea58e859f
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / lib / NoExporter.pm
1 package NoExporter;
2 # $Id: /mirror/googlecode/test-more-trunk/t/lib/NoExporter.pm 67132 2008-10-01T01:11:04.501643Z schwern  $
3
4 $VERSION = 1.02;
5
6 sub import {
7     shift;
8     die "NoExporter exports nothing.  You asked for: @_" if @_;
9 }
10
11 1;
12