Fix docs. The phrases "Fewer than 1%" and "over 96%" are very confusing, so I removed...
[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;