diff options
Diffstat (limited to 'Zend/tests/foreach_005.phpt')
-rw-r--r-- | Zend/tests/foreach_005.phpt | 2 |
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++; } } ?> |