Update tests

This commit is contained in:
Xinchen Hui 2011-10-31 06:52:45 +00:00
parent 3b99aa995d
commit 55656b2cda

View File

@ -6,7 +6,8 @@ See Bug #60169, doesn't fixed yet
<?php
error_reporting(0);
$arr = array("test");
list($a,$b)= is_array($arr)? $arr : $arr;
list($a,$b) = is_array($arr)? $arr : $arr;
list($c,$d) = is_array($arr)?: NULL;
echo "ok\n";
--EXPECT--
ok