summaryrefslogtreecommitdiff
path: root/lib/File
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2022-01-21 18:37:38 +0000
committerPaul Evans <leonerd@leonerd.org.uk>2022-01-25 15:02:58 +0000
commitc6874a08f06d60ec8b3f9e21a538a38282910123 (patch)
tree432c92af72026f7b2bd6af1e88c7485d5e79c674 /lib/File
parent8b1953ca0cda2ffa51b51e27099c05be00df7237 (diff)
downloadperl-c6874a08f06d60ec8b3f9e21a538a38282910123.tar.gz
Fix bundled .pm files for experimental::builtin warnings
Diffstat (limited to 'lib/File')
-rw-r--r--lib/File/Copy.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm
index 1c72dfebbe..ce659a0203 100644
--- a/lib/File/Copy.pm
+++ b/lib/File/Copy.pm
@@ -10,6 +10,7 @@ package File::Copy;
use 5.035007;
use strict;
use warnings; no warnings 'newline';
+no warnings 'experimental::builtin';
use builtin 'blessed';
use overload;
use File::Spec;
@@ -22,7 +23,7 @@ sub syscopy;
sub cp;
sub mv;
-$VERSION = '2.38';
+$VERSION = '2.39';
require Exporter;
@ISA = qw(Exporter);