php-src/Zend/tests/coalesce_assign_optimization.phpt

18 lines
247 B
Plaintext
Raw Normal View History

--TEST--
Live range construction should not break if colesce assign branch is optimized away
--FILE--
<?php
function test() {
$a[X] ??= Y;
var_dump($a);
}
define('X', 1);
define('Y', 2);
test();
?>
--EXPECT--
array(1) {
[1]=>
int(2)
}