Remove our (now broken) dzil GatherDir subclass
[gitmo/Moose.git] / t / lib / MyMooseA.pm
CommitLineData
446e850f 1package MyMooseA;
2
446e850f 3use Moose;
4
5has 'b' => (is => 'rw', isa => 'MyMooseB');
6
71;