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

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

$a($a);

?>
--EXPECTF--
Fatal error: Cannot destroy active lambda function in %s on line %d