Support modifier by regexp
[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;