php-src/Zend/tests/closure_022.phpt
2008-07-22 07:29:31 +00:00

12 lines
207 B
PHP
Executable file

--TEST--
Closure 022: Closure properties
--FILE--
<?php
$a = 0;
$foo = function() use ($a) {
};
$foo->a = 1;
?>
--EXPECTF--
Fatal error: Closure object cannot have properties in %sclosure_022.php on line 5