summaryrefslogtreecommitdiff
path: root/tests/lang/012.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/012.phpt')
-rw-r--r--tests/lang/012.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/lang/012.phpt b/tests/lang/012.phpt
deleted file mode 100644
index b54132b906..0000000000
--- a/tests/lang/012.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-Testing stack after early function return
---POST--
---GET--
---FILE--
-<?php
-function F () {
- if(1) {
- return("Hello");
- }
-}
-
-$i=0;
-while ($i<2) {
- echo F();
- $i++;
-}
-?>
---EXPECT--
-HelloHello