e788a2b2a8aac30a9f9f8eaf27f99b1391de0d35
[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;