summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_035.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/closure_035.phpt')
-rw-r--r--Zend/tests/closure_035.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/closure_035.phpt b/Zend/tests/closure_035.phpt
index e39a991ab6..d06d0bb25b 100644
--- a/Zend/tests/closure_035.phpt
+++ b/Zend/tests/closure_035.phpt
@@ -7,7 +7,7 @@ $x = function () use (&$x) {
$h = function () use ($x) {
var_dump($x);
return 1;
- };
+ };
return $h();
};