1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/Zend/tests/closure_024.phpt
2008-07-28 14:10:00 +00:00

17 lines
248 B
PHP

--TEST--
Closure 024: Trying to clone the Closure object
--FILE--
<?php
$a = function () {
return clone function () {
return 1;
};
};
$a();
?>
--EXPECTF--
Fatal error: Trying to clone an uncloneable object of class Closure in %s on line %d