summaryrefslogtreecommitdiff
path: root/tests/lang/040.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/040.phpt')
-rwxr-xr-xtests/lang/040.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/lang/040.phpt b/tests/lang/040.phpt
deleted file mode 100755
index 6d8ece9679..0000000000
--- a/tests/lang/040.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-foreach into array
---FILE--
-<?php
-$a = array(0,1);
-$b[0]=2;
-foreach($a as $b[0]) {
- echo $b[0]."\n";
-}
-?>
-===DONE===
---EXPECT--
-0
-1
-===DONE===