Added Module::Pluggable
[pkg-perl] / deb-src / libmodule-pluggable-perl / libmodule-pluggable-perl-3.8 / t / lib / InnerTest / Plugin / Foo.pm
1 package InnerTest::Plugin::Foo;
2 use strict;
3
4 our $FOO = 1;
5
6 package InnerTest::Plugin::Bar;
7 use strict;
8
9 sub bar {}
10
11 package InnerTest::Plugin::Quux;
12 use strict;
13 use base qw(InnerTest::Plugin::Bar);
14
15
16
17 1;