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

21 lines
321 B
PHP

--TEST--
JIT ASSIGN_OP: 002
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
class Test {
public ?string $prop = "0";
}
function test() {
$obj = new Test;
$ref =& $obj->prop;
var_dump($ref &= 1);
}
test();
?>
--EXPECT--
string(1) "0"