summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_017.phpt
blob: 85c7eca06aa954160d7a1c1bc611af7e03553cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Closure 017: Trying to destroy an active lambda function
--FILE--
<?php

$a = function(&$a) { $a = 1; };

$a($a);

?>
DONE
--EXPECT--
DONE