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.
26 lines
451 B
26 lines
451 B
--TEST--
|
|
static variable captured by reference is not redeclared as a local variable
|
|
--FILE--
|
|
<?php
|
|
function getValue(): int
|
|
{
|
|
static $value = null;
|
|
if ($value === null) {
|
|
$value = 0;
|
|
$increment = static function () use (&$value): void {
|
|
$value++;
|
|
};
|
|
$increment();
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
function main(): void
|
|
{
|
|
var_dump(getValue());
|
|
var_dump(getValue());
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(1)
|
|
|