Add a test for attribute conflict when composing one role into another
[gitmo/Moose.git] / t / lib / Foo.pm
1
2 package Foo;
3 use Moose;
4
5 has 'bar' => (is => 'rw');
6
7 1;