summaryrefslogtreecommitdiff
path: root/tests/lang/passByReference_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/passByReference_001.phpt')
-rw-r--r--tests/lang/passByReference_001.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lang/passByReference_001.phpt b/tests/lang/passByReference_001.phpt
index 277f6d4a39..fd05182e68 100644
--- a/tests/lang/passByReference_001.phpt
+++ b/tests/lang/passByReference_001.phpt
@@ -4,14 +4,14 @@ passing of function parameters by reference
<?php
function f($arg1, &$arg2)
{
- var_dump($arg1++);
- var_dump($arg2++);
+ var_dump($arg1++);
+ var_dump($arg2++);
}
function g (&$arg1, &$arg2)
{
- var_dump($arg1);
- var_dump($arg2);
+ var_dump($arg1);
+ var_dump($arg2);
}
$a = 7;
$b = 15;