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