blob: 51467dae1d2bf54f9ea4a28ebfe2c97bfae3455c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Auto-globals in arrow functions
--FILE--
<?php
// This should work, but *not* generate a binding for $GLOBALS
$a = 123;
$fn = fn() => $GLOBALS['a'];
var_dump($fn());
?>
--EXPECT--
int(123)
|