mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
13 lines
225 B
PHP
Executable File
13 lines
225 B
PHP
Executable File
--TEST--
|
|
Bug #36303 (foreach on error_zval produces segfault)
|
|
--FILE--
|
|
<?php
|
|
$x="test";
|
|
foreach($x->a->b as &$v) {
|
|
}
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Invalid argument supplied for foreach() in %sbug36303.php on line 3
|
|
ok
|