summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/t/comp/decl.t
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2010-09-24 15:06:37 +0000
committermillert <millert@openbsd.org>2010-09-24 15:06:37 +0000
commit0dc2eace317a852e5f4da130db2d009adf26967e (patch)
tree099038fb17f1e95a2b5715e2bc3a008abbd23f6b /gnu/usr.bin/perl/t/comp/decl.t
parentremove files no longer in perl 5.12.2 (or that have moved) (diff)
downloadwireguard-openbsd-0dc2eace317a852e5f4da130db2d009adf26967e.tar.xz
wireguard-openbsd-0dc2eace317a852e5f4da130db2d009adf26967e.zip
merge in perl 5.12.2 plus local changes
Diffstat (limited to 'gnu/usr.bin/perl/t/comp/decl.t')
-rw-r--r--gnu/usr.bin/perl/t/comp/decl.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/t/comp/decl.t b/gnu/usr.bin/perl/t/comp/decl.t
index a4b898c7145..5056850f49b 100644
--- a/gnu/usr.bin/perl/t/comp/decl.t
+++ b/gnu/usr.bin/perl/t/comp/decl.t
@@ -11,8 +11,8 @@ ok 5
print "1..7\n";
-do one();
-do two();
+one();
+two();
sub two {
print "ok 2\n";
@@ -26,10 +26,10 @@ if ($x eq $x) {
sub three {
print "ok 3\n";
}
- do three();
+ three();
}
-do four();
+four();
$~ = 'one';
write;
$~ = 'two';