Document how to pass new attribute values at instance-role application time
[gitmo/Moose.git] / t / lib / Bar.pm
CommitLineData
0e6614c3 1
2package Bar;
0e6614c3 3use Moose;
05d9eaf6 4use Moose::Util::TypeConstraints;
0e6614c3 5
6type Baz => where { 1 };
7
8subtype Bling => as Baz => where { 1 };
9
101;