mirror of
https://github.com/php/php-src.git
synced 2026-04-30 03:33:17 +02:00
b86c6245cc
This fixes oss-fuzz #47777
19 lines
236 B
PHP
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
|