Revert "add an option to disable the mutable ancestor warning"
[gitmo/Moose.git] / t / lib / Recursive / Child.pm
1 package Recursive::Child;
2 use Moose;
3 extends 'Recursive::Parent';
4
5 has parent => (
6     is  => 'ro',
7     isa => 'Recursive::Parent',
8 );
9
10 __PACKAGE__->meta->make_immutable;
11
12 1;