mirror of
https://github.com/php/php-src.git
synced 2025-01-10 13:03:54 +08:00
10 lines
173 B
Plaintext
10 lines
173 B
Plaintext
|
--TEST--
|
||
|
Incorrect CFG/SSA reconstruction
|
||
|
--FILE--
|
||
|
<?php
|
||
|
if (!is_int($info = gc_collect_cycles()) || ($info < 100)) {
|
||
|
echo gettype($info)."\n";
|
||
|
}
|
||
|
--EXPECT--
|
||
|
integer
|