Moose used an incorrect cast at the C-level resulting in errors with >2**32 IV's...
[gitmo/Mouse.git] / t / lib / Bar.pm
1
2 package Bar;
3 use Mouse;
4 use Mouse::Util::TypeConstraints;
5
6 type Baz => where { 1 };
7
8 subtype Bling => as Baz => where { 1 };
9
10 1;