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