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

21 lines
335 B
PHP

--TEST--
JIT ASSIGN_DIM_OP: Cyclic dependency
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
$a = null;
$a[] .= $a;
var_dump($a);
?>
--EXPECTF--
Warning: Array to string conversion in %sassign_dim_op_004.php on line 3
array(1) {
[0]=>
string(5) "Array"
}