Depend on B::Hooks::EndOfScope 0.07 to avoid Unknown errors.
[p5sagit/namespace-clean.git] / t / lib / FunctionWipeout.pm
CommitLineData
40aef9d6 1package FunctionWipeout;
2use warnings;
3use strict;
4
53e92ec5 5use ExporterTest qw( foo qux $foo );
40aef9d6 6
7sub bar { foo() }
8
53e92ec5 9use namespace::clean -except => [qw( qux )];
40aef9d6 10
11sub baz { bar() }
12
131;