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

$::reloads{bar_role}++;

with 'Foo::Role';

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

no Moose::Role;

1;