mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
3f1e1b9ddf
This fixes oss-fuzz #47049
17 lines
228 B
PHP
17 lines
228 B
PHP
--TEST--
|
|
Type inference 006: FETCH_DIM_W with invalid key type
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
--FILE--
|
|
<?php
|
|
function y() {
|
|
$obj=new y;
|
|
u($y[$obj]);
|
|
}
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|