php-src/Zend/tests/arrow_functions/002.phpt
2020-03-31 13:02:32 +02:00

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