mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
18 lines
247 B
Plaintext
18 lines
247 B
Plaintext
|
--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)
|
||
|
}
|