mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
14 lines
148 B
PHP
14 lines
148 B
PHP
--TEST--
|
|
Closure 017: Trying to destroy an active lambda function
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = function(&$a) { $a = 1; };
|
|
|
|
$a($a);
|
|
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|