Implement strict constructors, which will warn unkown constructor arguments
[gitmo/Mouse.git] / t / lib / Foo.pm
CommitLineData
60ad2cb7 1
2package Foo;
3use Mouse;
4
5has 'bar' => (is => 'rw');
6
71;