mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
12 lines
183 B
PHP
12 lines
183 B
PHP
--TEST--
|
|
GC 034: GC in request shutdown and resource list destroy
|
|
--FILE--
|
|
<?php
|
|
/* run with valgrind */
|
|
$a = array(fopen(__FILE__, 'r'));
|
|
$a[] = &$a;
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
==DONE==
|