mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
|
--TEST--
|
||
|
Null coalesce assign with memoized constant operand that is later interned (OSS-Fuzz #17903)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$foo[__DIR__] ??= 42;
|
||
|
var_dump($foo);
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
array(1) {
|
||
|
["%s"]=>
|
||
|
int(42)
|
||
|
}
|