| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/inference_infinite_loop.phpt |
--TEST--
Type inference should not result in infinite loop
--FILE--
<?php
function test() {
$b = false;
do {
$a = $a + PHP_INT_MAX + 2;
$a = 0;
} while ($b);
}
test();
?>
--EXPECTF--
Notice: Undefined variable: a in %s on line %d