Moose used an incorrect cast at the C-level resulting in errors with >2**32 IV's...
[gitmo/Mouse.git] / t / lib / Role / Child.pm
1 package Role::Child;
2 use Mouse::Role;
3
4 with 'Role::Parent' => { alias => { meth1 => 'aliased_meth1', } };
5
6 sub meth1 { }
7
8 1;