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