php-8.0.30-src/ext/opcache/tests/opt/gh8074.phpt

18 lines
220 B
PHP

--TEST--
GH-8074 (Wrong type inference of range() result)
--FILE--
<?php
function test() {
$array = range(1, "2");
foreach ($array as $i) {
var_dump($i + 1);
}
}
test();
?>
--EXPECT--
int(2)
int(3)