summaryrefslogtreecommitdiff
path: root/tests/lang/bug29566.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug29566.phpt')
-rwxr-xr-xtests/lang/bug29566.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lang/bug29566.phpt b/tests/lang/bug29566.phpt
deleted file mode 100755
index 5f292bd759..0000000000
--- a/tests/lang/bug29566.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #29566 (foreach/string handling strangeness)
---FILE--
-<?php
-$var="This is a string";
-
-$dummy="";
-unset($dummy);
-
-foreach($var['nosuchkey'] as $v) {
-}
-?>
-===DONE===
---EXPECTF--
-Warning: Invalid argument supplied for foreach() in %sbug29566.php on line %d
-===DONE===