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