php-8.0.30-src/Zend/tests/arrow_functions/002.phpt

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)