1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/closure_028.phpt
2020-02-03 22:52:20 +01:00

15 lines
174 B
PHP

--TEST--
Closure 028: Trying to use lambda directly in foreach
--FILE--
<?php
foreach (function(){ return 1; } as $y) {
var_dump($y);
}
print "ok\n";
?>
--EXPECT--
ok