php-src/Zend/tests/bug72854.phpt
2016-08-16 21:05:30 +02:00

19 lines
220 B
PHP

--TEST--
Bug #72854: PHP Crashes on duplicate destructor call
--FILE--
<?php
function get() {
$t = new stdClass;
$t->prop = $t;
return $t;
}
$i = 42;
get()->prop =& $i;
?>
===DONE===
--EXPECT--
===DONE===