ru_php/Zend/tests/gc/gc_044.phpt

17 lines
248 B
PHP

--TEST--
GC of object property table (order variation)
--FILE--
<?php
function test() {
$o1 = new stdClass;
$o2 = new stdClass;
$a = ['prop' => $o2];
$o = $o1;
$o2->a = (object) $a;
}
test();
?>
===DONE===
--EXPECT--
===DONE===