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.phpt11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/lang/009.phpt b/tests/lang/009.phpt
deleted file mode 100644
index ea2aa9294d..0000000000
--- a/tests/lang/009.phpt
+++ /dev/null
@@ -1,11 +0,0 @@
---TEST--
-Testing function parameter passing
---FILE--
-<?php
-function test ($a,$b) {
- echo $a+$b;
-}
-test(1,2);
-?>
---EXPECT--
-3