mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
13 lines
207 B
PHP
13 lines
207 B
PHP
--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
|