make attribute bare to silence warning
[gitmo/MooseX-AutoDoc.git] / t / lib / AutoDocTest7.pm
index d2807e0..a77ed1e 100644 (file)
@@ -3,6 +3,6 @@ package AutoDocTest7;
 use Moose;
 use AutoDocTestTypes qw( TestType );
 
-has typed_attr => (isa => TestType);
+has typed_attr => (isa => TestType, is => 'bare');
 
 1;