Drop obsolete test

This commit is contained in:
Nikita Popov 2012-09-01 20:10:12 +02:00
parent 53351d087d
commit 1b5b839312

View File

@ -1,11 +0,0 @@
--TEST--
Foreach loop tests - error case: reference to constant array.
--FILE--
<?php
echo "\nReference to constant array\n";
foreach (array(1,2) as &$v) {
var_dump($v);
}
?>
--EXPECTF--
Fatal error: Cannot create references to elements of a temporary array expression in %sforeachLoop.007.php on line %d