1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00
Files
archived-php-src/Zend/tests/arrow_functions/002.phpt
T
2019-10-02 10:34:08 +02:00

14 lines
211 B
PHP

--TEST--
Arrow functions implicit use must be throwing notices only upon actual use
--FILE--
<?php
$b = 1;
var_dump((fn() => $b + $c)());
?>
--EXPECTF--
Warning: Undefined variable: c in %s on line %d
int(1)