summaryrefslogtreecommitdiff
path: root/Zend/tests/bug60169.phpt
blob: f24c7cb564dd1057e8e8b9d00489dab4ccd3b55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Bug #60169 (Conjunction of ternary and list crashes PHP)
--FILE--
<?php
error_reporting(0);
$arr  = array("test");
list($a,$b) = is_array($arr)? $arr : $arr;
list($c,$d) = is_array($arr)?: NULL;
echo "ok\n";
?>
--EXPECT--
ok