We only need local $? if we inline calls to DEMOLISH
[gitmo/Moose.git] / t / lib / MyMooseA.pm
1 package MyMooseA;
2
3 use Moose;
4
5 has 'b' => (is => 'rw', isa => 'MyMooseB');
6
7 1;