mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
15 lines
191 B
PHP
15 lines
191 B
PHP
--TEST--
|
|
"Nested" list()
|
|
--FILE--
|
|
<?php
|
|
|
|
list($a, list($b)) = array(new stdclass, array(new stdclass));
|
|
var_dump($a, $b);
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(stdClass)#1 (0) {
|
|
}
|
|
object(stdClass)#2 (0) {
|
|
}
|