Revert "add a warning for immutablizing a class with mutable ancestors"
[gitmo/Moose.git] / t / lib / Recursive / Parent.pm
diff --git a/t/lib/Recursive/Parent.pm b/t/lib/Recursive/Parent.pm
deleted file mode 100644 (file)
index 2ffe6f7..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-package Recursive::Parent;
-use Moose;
-
-use Recursive::Child;
-
-has child => (
-    is  => 'ro',
-    isa => 'Maybe[Recursive::Child]',
-);
-
-__PACKAGE__->meta->make_immutable;
-
-1;