0_03
[gitmo/Moose.git] / t / lib / Foo.pm
1
2 package Foo;
3 use strict;
4 use warnings;
5 use Moose;
6
7 has 'bar' => (is => 'rw');
8
9 1;