1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00

Update tests

This commit is contained in:
Xinchen Hui
2011-10-31 06:52:45 +00:00
parent 3b99aa995d
commit 55656b2cda
+2 -1
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