xref: /php-src/Zend/tests/bug79900.phpt (revision c206c742)
1--TEST--
2Bug #79900: Memory leaks reported if GC disabled at runtime
3--FILE--
4<?php
5
6gc_disable();
7$obj = new stdClass;
8$obj->obj = $obj;
9
10?>
11===DONE===
12--EXPECT--
13===DONE===
14