1--TEST--
2JIT FETCH_DIM_R: 006
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7--FILE--
8<?php
9function test() {
10	$a['x'][1] = true;
11	for ($i = 0; $i < 3; $i++) {
12		var_dump($a['x'][0]);
13	}
14}
15test();
16?>
17DONE
18--EXPECTF--
19Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
20NULL
21
22Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
23NULL
24
25Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
26NULL
27DONE