summaryrefslogtreecommitdiff
path: root/Zend/tests/foreach_over_null.phpt
blob: d7abc3d09613ffceb3bcfff5a3782769e4e39f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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