Put back the private accessor installer method, there are overrides in the wild
[p5sagit/Class-Accessor-Grouped.git] / t / lib / BaseInheritedGroups.pm
CommitLineData
e6f2a0fd 1package BaseInheritedGroups;
2use strict;
3use warnings;
4use base 'Class::Accessor::Grouped';
5
c46050d3 6__PACKAGE__->mk_group_accessors('inherited', 'basefield', 'undefined');
e6f2a0fd 7
8sub new {
9 return bless {}, shift;
10};
11
121;