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