Import namespace-clean-0.01.tar.gz.
[p5sagit/namespace-clean.git] / t / lib / FunctionWipeout.pm
1 package FunctionWipeout;
2 use warnings;
3 use strict;
4
5 use ExporterTest qw(foo);
6
7 sub bar { foo() }
8
9 use namespace::clean;
10
11 sub baz { bar() }
12
13 1;