Catch up Moose's change d21262bd42c2539c47e5d41e7506710ecd27ad65
[gitmo/Mouse.git] / t / lib / Bar.pm
CommitLineData
60ad2cb7 1
2package Bar;
3use Mouse;
4use Mouse::Util::TypeConstraints;
5
6type Baz => where { 1 };
7
8subtype Bling => as Baz => where { 1 };
9
101;