The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

# package for t/role_check_mouse.t
# the role
{
package MouseRole;
}
# a class that composes the role
{
package WithMouseRole;
use Mouse;
with 'MouseRole';
}
1;