1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/closure_017.phpt
2015-03-10 23:04:41 +03:00

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