summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorStephane Payrard <stef@francenet.fr>1998-03-02 01:52:46 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-03-02 01:52:46 +0000
commitdab48698179b4e8606409875b7121f225bcf46be (patch)
tree6e3ba85583a135691258ae0a53c0e32955c6a15d /t
parent3500f6799fed8479a1efcf408255735921bd3f48 (diff)
downloadperl-dab48698179b4e8606409875b7121f225bcf46be.tar.gz
[win32] yet another 'old' patch
Message-Id: <199712040054.BAA04612@www.zweig.com> To: perl5-porters@perl.org Subject: Re: [PERL] buglet : minor but gratuitous inconsistency between `my' and `local' (Patch included) p4raw-id: //depot/win32/perl@611
Diffstat (limited to 't')
-rwxr-xr-xt/op/my.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/my.t b/t/op/my.t
index d439bebd86..1777e88266 100755
--- a/t/op/my.t
+++ b/t/op/my.t
@@ -10,7 +10,8 @@ sub foo {
my $d;
$c = "ok 3\n";
$d = "ok 4\n";
- { my($a,$c) = ("ok 9\n", "ok 10\n"); ($x, $y) = ($a, $c); }
+ { my($a, undef, $c) = ("ok 9\n", "not ok 10\n", "ok 10\n");
+ ($x, $y) = ($a, $c); }
print $a, $b;
$c . $d;
}