summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_022.phpt
blob: 8621d2c095f9c1e2edc2a53d81b3726f8c3940e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Closure 022: Closure properties
--FILE--
<?php
$a = 0;
$foo = function() use ($a) {
};
$foo->a = 1;
?>
--EXPECTF--
Catchable fatal error: Closure object cannot have properties in %sclosure_022.php on line 5