summaryrefslogtreecommitdiff
path: root/tests/lang/010.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/010.phpt')
-rw-r--r--tests/lang/010.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/lang/010.phpt b/tests/lang/010.phpt
deleted file mode 100644
index e414baae6e..0000000000
--- a/tests/lang/010.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Testing function parameter passing with a return value
---POST--
---GET--
---FILE--
-<?php
-function test ($b) {
- $b++;
- return($b);
-}
-$a = test(1);
-echo $a;
-?>
---EXPECT--
-2