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.
45 lines
636 B
45 lines
636 B
--TEST--
|
|
Chained assignment with array append ([]), property write, and variable write as rvalue inside constructor argument
|
|
--FILE--
|
|
<?php
|
|
class Test2
|
|
{
|
|
public function __construct($value2)
|
|
{
|
|
var_dump($value2);
|
|
}
|
|
}
|
|
|
|
class Test
|
|
{
|
|
public $arr = [];
|
|
|
|
public $value;
|
|
|
|
public function __construct()
|
|
{
|
|
$arr = [0];
|
|
new Test2($this->arr[] = $arr[] = $this->value = $value = 1);
|
|
var_dump($this->value, $value, $this->arr, $arr);
|
|
}
|
|
}
|
|
|
|
function main()
|
|
{
|
|
new Test;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(1)
|
|
int(1)
|
|
array(1) {
|
|
[0]=>
|
|
int(1)
|
|
}
|
|
array(2) {
|
|
[0]=>
|
|
int(0)
|
|
[1]=>
|
|
int(1)
|
|
}
|
|
|