php-src/Zend/tests/closure_024.phpt

17 lines
248 B
Plaintext
Raw Normal View History

2008-07-28 14:10:00 +00:00
--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