1--TEST--
2JIT: FETCH_OBJ 009
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7--FILE--
8<?php
9function test() {
10    for ($i = 0; $i < 10; $i++) {
11        $obj = new stdClass;
12        $obj->x[0] = null;
13        $obj->x > $obj->x[0] = null;
14    }
15}
16test();
17?>
18DONE
19--EXPECT--
20DONE
21