make attribute bare to silence warning
[gitmo/MooseX-AutoDoc.git] / t / lib / AutoDocTest7.pm
1 package AutoDocTest7;
2
3 use Moose;
4 use AutoDocTestTypes qw( TestType );
5
6 has typed_attr => (isa => TestType, is => 'bare');
7
8 1;