1--TEST--
2JIT: FETCH_OBJ 005
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8opcache.jit=tracing
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13for ($i = 0; $i < 3; $i++) {
14	$a =& $b;
15	$a->p;
16}
17?>
18--EXPECTF--
19Warning: Attempt to read property "p" on null in %sfetch_obj_005.php on line 4
20
21Warning: Attempt to read property "p" on null in %sfetch_obj_005.php on line 4
22
23Warning: Attempt to read property "p" on null in %sfetch_obj_005.php on line 4