The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test::More 0.88;
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
use lib 't/lib';
{
package MyRole;
has foo => ( is => 'ro' );
# Note ordering here. If metaclass reinitialization nukes attributes, this
# breaks.
}
{
package MyClass;
use Moose;
with 'MyRole';
}
my $object = MyClass->new( foo => 21, message => 'foo' );
OverloadingTests::test_overloading_for_object( $object, 'MyClass object' );
is( $object->foo(), 21,
'foo attribute in MyClass is still present (from MyRole)' );
done_testing();