mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
First pass at moving `Zend/tests/gh*` tests to existing sub directories Work towards GH-15631
25 lines
285 B
PHP
25 lines
285 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 (2) {
|
|
["function"]=>
|
|
string(4) "func"
|
|
["static"]=>
|
|
array(1) {
|
|
["i"]=>
|
|
NULL
|
|
}
|
|
}
|