Committer's note: Add dist/Attribute-Handlers/demo/MyClass.pm to list of
files whose $VERSION numbers do not have to be incremented when modified.
Since this file is found in a 'demo/' directory, it does not have to be
treated as if it were a real Perl library which happens to be shipping
with core.
For: RT #119365
'lib/Config.pm', # no version number but contents will vary
'dist/Exporter/lib/Exporter/Heavy.pm',
'win32/FindExt.pm',
+ 'dist/Attribute-Handlers/demo/MyClass.pm', # it's just demonstration code
} = ();
# Files to skip just for particular version(s),
package MyClass;
$VERSION = '1.00';
use 5.006;
-use base Attribute::Handlers;
+use parent qw(Attribute::Handlers);
no warnings 'redefine';
sub z :Aokay(1,20) {};
package DerTest;
-use base 'Test';
+use parent qw(Test);
use warnings;
my $x5 :Dokay(1,21);