summaryrefslogtreecommitdiffstats
path: root/t/data/moose-roles/before/Foo/Role.pm
blob: 743a4c99e08529080b1e4747b0773e7a2b444f0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Foo::Role;
use Moose::Role;

$::reloads{foo_role}++;

has foo_role1 => (
    is  => 'ro',
    isa => 'Str',
);

no Moose::Role;

1;