summaryrefslogtreecommitdiff
path: root/Zend/tests/gc_027.phpt
blob: 147ccf497f97eba62f80e8fdd98606c6d69c17d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
GC 027: GC and properties of internal classes
--INI--
zend.enable_gc=1
--FILE--
<?php
try {
    throw new Exception();
} catch (Exception $e) {
    gc_collect_cycles();
}
echo "ok\n";
?>
--EXPECT--
ok