We only need local $? if we inline calls to DEMOLISH
[gitmo/Moose.git] / t / lib / Bar.pm
1
2 package Bar;
3 use Moose;
4 use Moose::Util::TypeConstraints;
5
6 type Baz => where { 1 };
7
8 subtype Bling => as Baz => where { 1 };
9
10 1;