Support modifier by regexp
[gitmo/Mouse.git] / t / lib / Foo.pm
1
2 package Foo;
3 use Mouse;
4
5 has 'bar' => (is => 'rw');
6
7 1;