mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
10 lines
197 B
PHP
10 lines
197 B
PHP
--TEST--
|
|
Bug #81076 Invalid implicit binds cause incorrect static var count in closure debug info
|
|
--FILE--
|
|
<?php
|
|
var_dump(fn() => [$why, $do, $we, $count]);
|
|
?>
|
|
--EXPECT--
|
|
object(Closure)#1 (0) {
|
|
}
|