php-src/Zend/tests/closure_use_auto_global.phpt

17 lines
250 B
Plaintext
Raw Normal View History

--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