d3702bc6c6326c0290fdc413f7dec4ffdc477557
[gitmo/Mouse.git] / t / lib / Role / Child.pm
1 package Role::Child;
2 # This is automatically generated by author/import-moose-test.pl.
3 # DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4 use t::lib::MooseCompat;
5 use Mouse::Role;
6
7 with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };
8
9 sub meth1 { }
10
11 1;