e09ab0ef532b7fe19c357bec01dedba8d3e92959
[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;