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

21 lines
312 B
PHP

--TEST--
JIT FETCH_DIM_R: 013
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
function foo() {
$y = 0; $tokens = [];
for($cnt = 0; $cnt < 6; $cnt++) {
$tokens[$y] > $tokens[$y][] = $y;
}
}
@foo();
?>
DONE
--EXPECT--
DONE