mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
f3e5bbe6f3
Per RFC: https://wiki.php.net/rfc/arrow_functions_v2 Co-authored-by: Levi Morrison <levim@php.net> Co-authored-by: Bob Weinand <bobwei9@hotmail.com>
14 lines
210 B
PHP
14 lines
210 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--
|
|
Notice: Undefined variable: c in %s on line %d
|
|
int(1)
|