We only need local $? if we inline calls to DEMOLISH
[gitmo/Moose.git] / t / lib / Role / Child.pm
CommitLineData
87259f30 1package Role::Child;
2use Moose::Role;
3
82f8ace6 4with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };
87259f30 5
6sub meth1 { }
7
81;