summaryrefslogtreecommitdiff
path: root/t/lib/Bar.pm
blob: b520c7adaf8cb510524dcf124e6a024c96b0d010 (plain)
1
2
3
4
5
6
7
8
9
package Bar;
use Moose;
use Moose::Util::TypeConstraints;

type Baz => where { 1 };

subtype Bling => as Baz => where { 1 };

1;