summaryrefslogtreecommitdiff
path: root/tests/lang/008.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/008.phpt')
-rw-r--r--tests/lang/008.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lang/008.phpt b/tests/lang/008.phpt
deleted file mode 100644
index 145214cbb4..0000000000
--- a/tests/lang/008.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Testing recursive function
---POST--
---GET--
---FILE--
-<?php Function Test()
- {
- static $a=1;
-
- echo "$a ";
- $a++;
- if($a<10): Test(); endif;
- }
- Test()?>
---EXPECT--
-1 2 3 4 5 6 7 8 9