Remove auto_install for mbm as using git is 'too much yak hair'.
[p5sagit/namespace-clean.git] / t / lib / OtherTypes.pm
CommitLineData
6444f23a 1package OtherTypes;
2
3our $foo = 23;
4our @foo = "bar";
5our %foo = (mouse => "trap");
6{
7 no warnings;
8 # perl warns about the bareword foo. If we use *foo instead the
9 # warning goes away, but the *foo{IO} slot doesn't get autoviv'd at
10 # compile time.
11 open foo, "<", $0;
12}
13
14BEGIN { $main::pvio = *foo{IO} }
15
16sub foo { 1 }
17
18use namespace::clean;
19
201;