RT#69616: regexp SVs lose regexpness in assignment
[p5sagit/p5-mst-13.2.git] / t / op / push.t
old mode 100755 (executable)
new mode 100644 (file)
index a67caed..2024706
@@ -1,7 +1,5 @@
 #!./perl
 
-# $RCSfile: push.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:13 $
-
 @tests = split(/\n/, <<EOF);
 0 3,                   0 1 2,          3 4 5 6 7
 0 0 a b c,             ,               a b c 0 1 2 3 4 5 6 7
@@ -26,9 +24,15 @@ push(@x,4);
 if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 2\n";} else {print "not ok 2\n";}
 
 # test for push/pop intuiting @ on array
-push(x,3);
+{
+    no warnings 'deprecated';
+    push(x,3);
+}
 if (join(':',@x) eq '1:2:3:1:2:3:4:3') {print "ok 3\n";} else {print "not ok 3\n";}
-pop(x);
+{
+    no warnings 'deprecated';
+    pop(x);
+}
 if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 4\n";} else {print "not ok 4\n";}
 
 $test = 5;