summaryrefslogtreecommitdiff
path: root/tests/lang/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/002.phpt')
-rw-r--r--tests/lang/002.phpt14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/lang/002.phpt b/tests/lang/002.phpt
deleted file mode 100644
index dd2c83b4f6..0000000000
--- a/tests/lang/002.phpt
+++ /dev/null
@@ -1,14 +0,0 @@
---TEST--
-Simple While Loop Test
---POST--
---GET--
---FILE--
-<?php
-$a=1;
-while ($a<10) {
- echo $a;
- $a++;
-}
-?>
---EXPECT--
-123456789