summaryrefslogtreecommitdiff
path: root/tests/lang/017.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/017.phpt')
-rw-r--r--tests/lang/017.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/lang/017.phpt b/tests/lang/017.phpt
deleted file mode 100644
index 1fc8429a82..0000000000
--- a/tests/lang/017.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-Testing user-defined function falling out of an If into another
---POST--
---GET--
---FILE--
-<?php $a = 1;
-old_function Test $a (
- if($a<3):
- return(3);
- endif;
-);
-
-if($a < Test($a)):
- echo "$a\n";
- $a++;
-endif?>
---EXPECT--
-1