|
--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
|