mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
17 lines
270 B
PHP
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
|