mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
19 lines
238 B
PHP
19 lines
238 B
PHP
--TEST--
|
|
Closure 033: Recursive var_dump on closures
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = function () use(&$a) {};
|
|
var_dump($a);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
object(Closure)#%d (1) {
|
|
["static"]=>
|
|
array(1) {
|
|
["a"]=>
|
|
*RECURSION*
|
|
}
|
|
}
|
|
===DONE===
|