mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
16 lines
215 B
PHP
16 lines
215 B
PHP
--TEST--
|
|
Closure cannot use one variable twice
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = 1;
|
|
$fn = function() use ($a, &$a) {
|
|
$a = 2;
|
|
};
|
|
$fn();
|
|
var_dump($a);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use variable $a twice in %s on line %d
|