
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/closure_024.phpt |
--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