mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
17 lines
180 B
PHP
17 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
|