1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00
Files
archived-php-src/ext/opcache/tests/opt/inference_009.phpt
T
Dmitry Stogov b86c6245cc Fix type inference
This fixes oss-fuzz #47777
2022-06-06 11:13:53 +03:00

19 lines
236 B
PHP

--TEST--
Type inference 009: FRTCH_DIM_W
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
--FILE--
<?php
function y() {
for(;;) {
$arr[y][]=y;
$arr=[''=>y];
}
}
?>
DONE
--EXPECT--
DONE