mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
18 lines
329 B
PHP
18 lines
329 B
PHP
--TEST--
|
|
Bug #27468 (foreach in __destruct() causes segfault)
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
function __destruct() {
|
|
foreach ($this->x as $x);
|
|
}
|
|
}
|
|
new foo();
|
|
echo 'OK';
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined property: foo::$x in %sbug27468.php on line 4
|
|
|
|
Warning: Invalid argument supplied for foreach() in %sbug27468.php on line 4
|
|
OK
|