Fixed test

This commit is contained in:
Dmitry Stogov 2007-12-13 07:57:52 +00:00
parent 3b356d5ed8
commit 96a21b31d6

View File

@ -10,6 +10,10 @@ $b["key1"]["key2"]["key3"]=&$b;
array_merge_recursive($a,$b);
/* Break recursion */
$a["key1"]["key2"]["key3"] = null;
$b["key1"]["key2"]["key3"] = null;
echo "Done.\n";
?>
--EXPECTF--