Skip BUILDALL in the default constructor, and DEMOLISHALL in the default destructor:
[gitmo/Mouse.git] / t / lib / Foo.pm
CommitLineData
60ad2cb7 1
2package Foo;
3use Mouse;
4
5has 'bar' => (is => 'rw');
6
71;