summaryrefslogtreecommitdiff
path: root/lib/Test/Simple/t/lib/NoExporter.pm
blob: 5eb2b3be90a6eb09a7fb278dd9ec869ea58e859f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package NoExporter;
# $Id: /mirror/googlecode/test-more-trunk/t/lib/NoExporter.pm 67132 2008-10-01T01:11:04.501643Z schwern  $

$VERSION = 1.02;

sub import {
    shift;
    die "NoExporter exports nothing.  You asked for: @_" if @_;
}

1;