From: Jarkko Hietaniemi Date: Thu, 10 May 2001 12:24:06 +0000 (+0000) Subject: Add a for(func()) test. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4bfc3f4d8a75856264074036f844c7b83264858a;p=p5sagit%2Fp5-mst-13.2.git Add a for(func()) test. p4raw-id: //depot/perl@10069 --- diff --git a/t/cmd/for.t b/t/cmd/for.t index d70af57..90b5ff0 100755 --- a/t/cmd/for.t +++ b/t/cmd/for.t @@ -1,6 +1,6 @@ #!./perl -print "1..10\n"; +print "1..11\n"; for ($i = 0; $i <= 10; $i++) { $x[$i] = $i; @@ -55,3 +55,14 @@ sub foo { print foo(1) == 1 ? "ok" : "not ok", " 8\n"; print foo(2) == 2 ? "ok" : "not ok", " 9\n"; print foo(5) == 5 ? "ok" : "not ok", " 10\n"; + +sub bar { + return (1, 2, 4); +} + +$a = 0; +foreach $b (bar()) { + $a += $b; +} +print $a == 7 ? "ok" : "not ok", " 11\n"; +