mirror of
https://github.com/php/php-src.git
synced 2026-04-17 13:01:02 +02:00
11 lines
174 B
PHP
11 lines
174 B
PHP
--TEST--
|
|
Incorrect CFG/SSA reconstruction
|
|
--FILE--
|
|
<?php
|
|
if (!is_int($info = gc_collect_cycles()) || ($info < 100)) {
|
|
echo gettype($info)."\n";
|
|
}
|
|
--EXPECT--
|
|
integer
|
|
|