blob: 9d2418eb4f46fd0bd8b52be5eee512383dcbd2b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--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
|