summaryrefslogtreecommitdiff
path: root/Zend/tests/arrow_functions/002.phpt
blob: b805b57c60eeddae7661c5e7172beda9f76ead07 (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--
Warning: Undefined variable $c in %s on line %d
int(1)