1--TEST--
2JIT FETCH_DIM_R: 006
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	$a['x'][1] = true;
12	for ($i = 0; $i < 3; $i++) {
13		var_dump($a['x'][0]);
14	}
15}
16test();
17?>
18DONE
19--EXPECTF--
20Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
21NULL
22
23Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
24NULL
25
26Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
27NULL
28DONE