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.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/lang/008.phpt b/tests/lang/008.phpt
deleted file mode 100644
index 1e9c86ff5a..0000000000
--- a/tests/lang/008.phpt
+++ /dev/null
@@ -1,20 +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