Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / lib / Bar.pm
CommitLineData
60ad2cb7 1
1eb43e0a 2# This is automatically generated by author/import-moose-test.pl.
3# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4use t::lib::MooseCompat;
60ad2cb7 5package Bar;
6use Mouse;
7use Mouse::Util::TypeConstraints;
8
9type Baz => where { 1 };
10
11subtype Bling => as Baz => where { 1 };
12
131;