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

17 lines
260 B
PHP

--TEST--
FETCH_R: 001 result reference counter may be decremented befor use
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
$x = [&$v];
$y = 'x';
$$y == [&$x[0]];
?>
DONE
--EXPECT--
DONE