| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/closure_use_auto_global.phpt |
--TEST--
Cannot use() auto-global
--FILE--
<?php
function test() {
$fn = function() use($GLOBALS) {
var_dump($GLOBALS);
};
$fn();
}
test();
?>
--EXPECTF--
Fatal error: Cannot use auto-global as lexical variable in %s on line %d