]> granicus.if.org Git - php/commitdiff
better not confuse people with this test..
authorfoobar <sniper@php.net>
Thu, 15 May 2003 17:50:29 +0000 (17:50 +0000)
committerfoobar <sniper@php.net>
Thu, 15 May 2003 17:50:29 +0000 (17:50 +0000)
tests/lang/bug23624.phpt [deleted file]

diff --git a/tests/lang/bug23624.phpt b/tests/lang/bug23624.phpt
deleted file mode 100644 (file)
index 81afefb..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #23624 (foreach leaves current array key as null)
---FILE--
-<?php
-    $arr = array ('one', 'two', 'three');
-    var_dump(current($arr));
-    foreach($arr as $key => $value);
-    var_dump(current($arr));
-?>
---EXPECT--
-string(3) "one"
-string(5) "three"