A simple fix to the warning generated by a sub-classed proxy - Please verify.
[dbsrgits/DBIx-Class.git] / t / lib / DBICNSTest / RtBug41083 / ResultSet / Foo.pm
CommitLineData
e9c270c5 1package DBICNSTest::RtBug41083::ResultSet::Foo;
2use strict;
3use warnings;
4use base 'DBICNSTest::RtBug41083::ResultSet';
1a304e51 5
6sub fooBar { 1; }
7
e9c270c5 81;