1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
archived-php-src/Zend/tests/arrow_functions/003.phpt
T
2019-10-02 10:34:08 +02:00

22 lines
296 B
PHP

--TEST--
Variable-variables inside arrow functions
--FILE--
<?php
$a = 1;
$var = "a";
$fn = fn() => $$var;
var_dump($fn());
${5} = 2;
$fn = fn() => ${5};
var_dump($fn());
?>
--EXPECTF--
Warning: Undefined variable: a in %s on line %d
NULL
Warning: Undefined variable: 5 in %s on line %d
NULL