Fix type composition
[gitmo/Mouse.git] / t / lib / Bar.pm
1
2 # This is automatically generated by author/import-moose-test.pl.
3 # DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4 use t::lib::MooseCompat;
5 package Bar;
6 use Mouse;
7 use Mouse::Util::TypeConstraints;
8
9 type Baz => where { 1 };
10
11 subtype Bling => as Baz => where { 1 };
12
13 1;