php-src/Zend/tests/closures/closure_const_expr/disallows_using_variables.phpt
DanielEScherzer a50f82bebf
Zend/tests: organize some tests with sub directories (6) (#17807)
Move more tests into existing directories

Work towards GH-15631
2025-02-15 14:55:07 +00:00

17 lines
270 B
PHP

--TEST--
Disallows using variables.
--FILE--
<?php
$foo = "bar";
const Closure = static function () use ($foo) {
echo $foo, PHP_EOL;
};
var_dump(Closure);
(Closure)();
?>
--EXPECTF--
Fatal error: Cannot use(...) variables in constant expression in %s on line %d