Another broken case where Moo::Role, then namespace::autoclean get loaded
[gitmo/Moo.git] / xt / lib / ExampleMooRoleWithAttribute.pm
CommitLineData
087c79b5 1package ExampleMooRoleWithAttribute;;
2use Moo::Role;
3# Note that autoclean here is the key bit!
4use namespace::autoclean;
5
6has output_to => (
7 is => 'ro',
8 required => 1,
9);
10
111;
12