'alias' and 'excludes' in with() are deprecated
[gitmo/Mouse.git] / t / lib / Role / Child.pm
CommitLineData
09584bc5 1package Role::Child;
2use Mouse::Role;
3
2bb76549 4with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };
09584bc5 5
6sub meth1 { }
7
81;