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

$::reloads{bar}++;

with 'Bar::Role';

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

__PACKAGE__->meta->make_immutable;
no Moose;

1;