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 for t/override_typecheck.t

package OverrideTypeCheck;
use base qw< Method::Signatures >;


sub type_check
{
    warn "in overridden type_check";
}


1;