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.
 
 

16 lines
248 B

--TEST--
static arrow function captures local variables by value
--FILE--
<?php
function main(): void
{
$factor = 3;
$map = static fn (int $value): int => $value * $factor;
$factor = 10;
var_dump($map(4));
}
?>
--EXPECT--
int(12)