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.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/lang/002.phpt b/tests/lang/002.phpt
deleted file mode 100644
index ec14d01c3f..0000000000
--- a/tests/lang/002.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Simple While Loop Test
---FILE--
-<?php
-$a=1;
-while ($a<10) {
- echo $a;
- $a++;
-}
-?>
---EXPECT--
-123456789