1--TEST--
2JIT FETCH_DIM_R: 007
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10function &test() {
11    $var = [0];
12    return $var;
13}
14var_dump(test()[0]);
15?>
16--EXPECT--
17int(0)
18