Add type_parameter() and __is_parameterized() to Meta::TypeConstraint
[gitmo/Mouse.git] / t / lib / Foo.pm
1
2 package Foo;
3 use Mouse;
4
5 has 'bar' => (is => 'rw');
6
7 1;