summaryrefslogtreecommitdiff
path: root/Zend/tests/arrow_functions/002.phpt
blob: 52c8020c1956573f9b334fd538c57c2118f0505e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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)