Require bugfixed CXSA and warn on old (unusable) versions
[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 {
ba8c183b 9 return bless {}, shift;
e6f2a0fd 10};
11
121;