Moose FAQ: Expand "Can I turn off type constraint checking?"
[gitmo/Moose.git] / lib / Moose / Manual / MethodModifiers.pod
index e32cdc4..a264155 100644 (file)
@@ -310,3 +310,12 @@ semi-colon:
   after 'foo' => sub { };
 
 =cut
+
+=head1 CAVEATS
+
+These method modification features do not work well with multiple inheritance,
+due to how method resolution is performed in Perl. Experiment with a test
+program to ensure your class hierarchy works as expected, or more preferably,
+don't use multiple inheritance (roles can help with this)!
+
+