mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
13 lines
176 B
PHP
13 lines
176 B
PHP
--TEST--
|
|
GC 027: GC and properties of internal classes
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
throw new Exception();
|
|
} catch (Exception $e) {
|
|
gc_collect_cycles();
|
|
}
|
|
echo "ok\n";
|
|
--EXPECT--
|
|
ok
|