a1f18841cfe80cc4d5b9f2cd75e6f8f096b8ba2a
[gitmo/Moo.git] / xt / lib / ExampleMooRoleWithAttribute.pm
1 package ExampleMooRoleWithAttribute;;
2 use Moo::Role;
3 # Note that autoclean here is the key bit!
4 use namespace::autoclean;
5
6 has output_to => (
7     is => 'ro',
8     required => 1,
9 );
10
11 1;
12