diff options
Diffstat (limited to 'ext/Attribute-Handlers/demo')
-rw-r--r-- | ext/Attribute-Handlers/demo/MyClass.pm | 2 | ||||
-rwxr-xr-x | ext/Attribute-Handlers/demo/demo.pl | 2 | ||||
-rwxr-xr-x | ext/Attribute-Handlers/demo/demo2.pl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/Attribute-Handlers/demo/MyClass.pm b/ext/Attribute-Handlers/demo/MyClass.pm index 079b2cc3ad..d012b9f1c4 100644 --- a/ext/Attribute-Handlers/demo/MyClass.pm +++ b/ext/Attribute-Handlers/demo/MyClass.pm @@ -1,6 +1,6 @@ package MyClass; $VERSION = '1.00'; -use v5.6.0; +use 5.006; use base Attribute::Handlers; no warnings 'redefine'; diff --git a/ext/Attribute-Handlers/demo/demo.pl b/ext/Attribute-Handlers/demo/demo.pl index 7a269e81b5..23c8334c0b 100755 --- a/ext/Attribute-Handlers/demo/demo.pl +++ b/ext/Attribute-Handlers/demo/demo.pl @@ -1,6 +1,6 @@ #! /usr/local/bin/perl -w -use v5.6.0; +use 5.006; use base Demo; my $y : Demo :This($this) = sub : Demo(1,2,3) {}; diff --git a/ext/Attribute-Handlers/demo/demo2.pl b/ext/Attribute-Handlers/demo/demo2.pl index 387ab4407d..46ed594225 100755 --- a/ext/Attribute-Handlers/demo/demo2.pl +++ b/ext/Attribute-Handlers/demo/demo2.pl @@ -1,6 +1,6 @@ #! /usr/local/bin/perl -w -use v5.6.0; +use 5.006; use base Demo; no warnings 'redefine'; |