summaryrefslogtreecommitdiff
path: root/Zend/tests/foreach_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/foreach_005.phpt')
-rw-r--r--Zend/tests/foreach_005.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/foreach_005.phpt b/Zend/tests/foreach_005.phpt
index 6ed9fe940b..063dc70de0 100644
--- a/Zend/tests/foreach_005.phpt
+++ b/Zend/tests/foreach_005.phpt
@@ -6,7 +6,7 @@ $a = [1,2,3];
foreach($a as &$x) {
foreach($a as &$y) {
echo "$x-$y\n";
- $y++;
+ $y++;
}
}
?>