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