summaryrefslogtreecommitdiff
path: root/t/lib/Moose/Meta/Attribute/Custom/Bar.pm
blob: 64dd230af575ab9e276dbe25018949f4ccb5a41a (plain)
1
2
3
4
5
6
7
8
9
10
package Moose::Meta::Attribute::Custom::Bar;

sub register_implementation { 'My::Bar' }


package My::Bar;

use Moose::Role;

1;