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 Parent;
use GrandParent ();
use base 'GrandParent';
sub dummy {};

1;
__END__

=head1 NAME

Parent demo class

=head2 foo

you must implement this in a derived class

=cut