add a warning for immutablizing a class with mutable ancestors
[gitmo/Moose.git] / t / lib / Recursive / Parent.pm
1 package Recursive::Parent;
2 use Moose;
3
4 use Recursive::Child;
5
6 has child => (
7     is  => 'ro',
8     isa => 'Maybe[Recursive::Child]',
9 );
10
11 __PACKAGE__->meta->make_immutable;
12
13 1;