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