php-8.0.30-src/Zend/tests/bug79900.phpt

14 lines
175 B
PHP

--TEST--
Bug #79900: Memory leaks reported if GC disabled at runtime
--FILE--
<?php
gc_disable();
$obj = new stdClass;
$obj->obj = $obj;
?>
===DONE===
--EXPECT--
===DONE===