updatin
[gitmo/Moose.git] / t / lib / Bar.pm
1
2 package Bar;
3 use strict;
4 use warnings;
5 use Moose;
6 use Moose::Util::TypeConstraints;
7
8 type Baz => where { 1 };
9
10 subtype Bling => as Baz => where { 1 };
11
12 1;