mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
e9f783fcdd
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
16 lines
212 B
PHP
16 lines
212 B
PHP
--TEST--
|
|
Bug #65997: Leak when using gc_collect_cycles with new GMP implementation
|
|
--EXTENSIONS--
|
|
gmp
|
|
--FILE--
|
|
<?php
|
|
|
|
gc_enable();
|
|
$gmp = gmp_init('10');
|
|
gc_collect_cycles();
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|