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/role_check_basic.t


# the role

{
    package BasicRole;

    use Role::Basic;
}


# a class that composes the role

{
    package WithBasicRole;

    use Role::Basic 'with';
    with 'BasicRole';

    sub new { bless {}, __PACKAGE__; }
}


1;