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