1--TEST--
2JIT COPY_TMP: 001
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.protect_memory=1
8--FILE--
9<?php
10function test() {
11    echo "";
12}
13
14$a = [];
15$a[test()] ??= 1;
16var_dump($a);
17?>
18--EXPECT--
19array(1) {
20  [""]=>
21  int(1)
22}
23