TypePHP 编译器 https://swoole.com/aot/
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.
 
 

22 lines
326 B

--TEST--
SSA: int
--FILE--
<?php
use native_types;
class Foo {
public int $b;
function assign_add_prop($n) {
for ($i = 0; $i < $n; ++$i) {
$this->b += 2;
}
}
}
function main(): void {
$o = new Foo();
$o->assign_add_prop(100000);
var_dump($o->b);
}
?>
--EXPECT--
int(200000)