summaryrefslogtreecommitdiff
path: root/Zend/tests/bug79900.phpt
blob: a09a72c74cbff5ae1bc10f2c24e5258897ca14cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #79900: Memory leaks reported if GC disabled at runtime
--FILE--
<?php

gc_disable();
$obj = new stdClass;
$obj->obj = $obj;

?>
===DONE===
--EXPECT--
===DONE===