Fix RT #54203 (reported by chocolateboy) that setters might return undef.
[gitmo/Mouse.git] / t / lib / Foo.pm
1
2 package Foo;
3 use Mouse;
4
5 has 'bar' => (is => 'rw');
6
7 1;