mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
17 lines
248 B
Plaintext
17 lines
248 B
Plaintext
|
--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===
|