php-src/Zend/tests/foreach_over_null.phpt

16 lines
228 B
Plaintext
Raw Normal View History

--TEST--
foreach over null
--FILE--
<?php
function test() {
foreach (null as $v) {
echo "Foo\n";
}
}
test();
?>
--EXPECTF--
Warning: foreach() argument must be of type array|object, null given in %s on line %d