diff options
author | 2010-09-24 15:06:37 +0000 | |
---|---|---|
committer | 2010-09-24 15:06:37 +0000 | |
commit | 0dc2eace317a852e5f4da130db2d009adf26967e (patch) | |
tree | 099038fb17f1e95a2b5715e2bc3a008abbd23f6b /gnu/usr.bin/perl/t/comp/decl.t | |
parent | remove files no longer in perl 5.12.2 (or that have moved) (diff) | |
download | wireguard-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.t | 8 |
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'; |