mirror of
https://github.com/php/php-src.git
synced 2026-04-07 16:13:32 +02:00
23 lines
249 B
PHP
23 lines
249 B
PHP
--TEST--
|
|
GH-8083 (var_dump() on closure with static variable segfaults)
|
|
--FILE--
|
|
<?php
|
|
|
|
function func() {
|
|
static $i;
|
|
}
|
|
|
|
$x = func(...);
|
|
|
|
var_dump($x);
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(Closure)#1 (1) {
|
|
["static"]=>
|
|
array(1) {
|
|
["i"]=>
|
|
NULL
|
|
}
|
|
}
|