php-src/Zend/tests/bug60169.phpt
2011-10-31 06:52:45 +00:00

14 lines
275 B
PHP
Executable File

--TEST--
Bug #60169 (Conjunction of ternary and list crashes PHP)
--XFAIL--
See Bug #60169, doesn't fixed yet
--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