Remove broken links for hip communications inc.
[p5sagit/p5-mst-13.2.git] / ext / Test-Simple / t / lib / NoExporter.pm
1 package NoExporter;
2
3 use strict;
4 our $VERSION = 1.02;
5
6 sub import {
7     shift;
8     die "NoExporter exports nothing.  You asked for: @_" if @_;
9 }
10
11 1;
12