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
356 B
22 lines
356 B
--TEST--
|
|
Native class: chained assignment remains in the native object model
|
|
--FILE--
|
|
<?php
|
|
|
|
#[Native]
|
|
class NativeChainedValue
|
|
{
|
|
public int $value = 42;
|
|
}
|
|
|
|
function main(): void
|
|
{
|
|
$first = $second = new NativeChainedValue();
|
|
var_dump($first->value, $second->value);
|
|
var_dump($first === $second);
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
int(42)
|
|
int(42)
|
|
bool(true)
|
|
|