The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package InnerTest::Plugin::Foo;
use strict;

our $FOO = 1;

package InnerTest::Plugin::Bar;
use strict;

sub bar {}

package InnerTest::Plugin::Quux;
use strict;
use base qw(InnerTest::Plugin::Bar);



1;