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