summaryrefslogtreecommitdiff
path: root/tests/lang/006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/006.phpt')
-rw-r--r--tests/lang/006.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/lang/006.phpt b/tests/lang/006.phpt
deleted file mode 100644
index b0cc9cf0e2..0000000000
--- a/tests/lang/006.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Nested If/ElseIf/Else Test
---POST--
---GET--
---FILE--
-<?php $a=1; $b=2;
- if($a==0):
- echo "bad";
- elseif($a==3):
- echo "bad";
- else:
- if($b==1):
- echo "bad";
- elseif($b==2):
- echo "good";
- else:
- echo "bad";
- endif;
- endif?>
---EXPECT--
-good