You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--TEST--
|
|
SSA narrowing: reference assignment prevents narrowing
|
|
--FILE--
|
|
<?php
|
|
function main(): void {
|
|
$a = 100;
|
|
$b = &$a;
|
|
$a = 200;
|
|
echo $b, PHP_EOL;
|
|
|
|
// $c is not referenced; arithmetic still keeps PHP runtime semantics.
|
|
$c = 50;
|
|
$c += 25;
|
|
echo $c, PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
200
|
|
75
|
|
|