php-8.0.30-src/Zend/tests/closure_use_trailing_comma....

18 lines
180 B
PHP

--TEST--
Closure use list can have trailing commas
--FILE--
<?php
$b = 'test';
$fn = function () use (
$b,
&$a,
) {
$a = $b;
};
$fn();
echo "$a\n";
?>
--EXPECT--
test