Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / lib / Role / Child.pm
CommitLineData
09584bc5 1package Role::Child;
1eb43e0a 2# This is automatically generated by author/import-moose-test.pl.
3# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4use t::lib::MooseCompat;
09584bc5 5use Mouse::Role;
6
2bb76549 7with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };
09584bc5 8
9sub meth1 { }
10
111;