php-8.0.30-src/ext/opcache/tests/jit/fetch_obj_009.phpt

22 lines
334 B
PHP

--TEST--
JIT: FETCH_OBJ 009
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
function test() {
for ($i = 0; $i < 10; $i++) {
$obj = new stdClass;
$obj->x[0] = null;
$obj->x > $obj->x[0] = null;
}
}
test();
?>
DONE
--EXPECT--
DONE