mirror of
https://github.com/php/php-src.git
synced 2026-04-24 00:18:23 +02:00
3e78964742
Use MAY_BE_NULL result (insted of empty) for ASSIGN_DIM with invalid arguments This fixes oss-fuzz #46840
17 lines
293 B
PHP
17 lines
293 B
PHP
--TEST--
|
|
Type inference 005: Use MAY_BE_NULL result (insted of empty) for ASSIGN_DIM with invalid arguments
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
$a = $r[] = $r = [] & $y;
|
|
+list(&$y) = $a;
|
|
}
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|