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 9197a9762b..0000000000
--- a/tests/lang/002.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Simple While Loop Test
---POST--
---GET--
---FILE--
-<?php $a=1;
- while($a<10):
- echo $a;
- $a++;
- endwhile?>
---EXPECT--
-123456789