diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-01 16:14:07 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-01 16:14:07 +0000 |
commit | fa3876ca54a7851cef43cd62627fea80053e1013 (patch) | |
tree | 288f190d24849bb9b15d6c9f241384e90207ac7d /lib | |
parent | 480f1286e775c8376e3c5f6659fe9380064ae39f (diff) | |
download | perl-fa3876ca54a7851cef43cd62627fea80053e1013.tar.gz |
autouse actually requires perl 5.6 at least.
p4raw-id: //depot/perl@27035
Diffstat (limited to 'lib')
-rw-r--r-- | lib/autouse.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/autouse.pm b/lib/autouse.pm index 30eef50d63..cbde3864bf 100644 --- a/lib/autouse.pm +++ b/lib/autouse.pm @@ -1,7 +1,7 @@ package autouse; #use strict; # debugging only -use 5.003_90; # ->can, for my $var +use 5.006; # use warnings $autouse::VERSION = '1.06'; |