Moose used an incorrect cast at the C-level resulting in errors with >2**32 IV's...
[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;