php-8.0.30-src/ext/opcache/tests/range_inference_hang.phpt

17 lines
181 B
PHP

--TEST--
Range inference should not hang
--FILE--
<?php
function test() {
$a = 0;
while (true) {
$a = $a+!$a=$a/!!~$a;
}
}
?>
===DONE===
--EXPECT--
===DONE===