mirror of
https://github.com/php/php-src.git
synced 2026-04-30 03:33:17 +02:00
d50875c822
Fixes oss-fuzz #49423 and #49474
20 lines
252 B
PHP
20 lines
252 B
PHP
--TEST--
|
|
Type inference 014: ASSIGN_DIM_OP
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
--FILE--
|
|
<?php
|
|
function y() {
|
|
for(;;){
|
|
$x[y] &= y;
|
|
$x = false;
|
|
$x[""]=y;
|
|
}
|
|
}
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|