mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
13 lines
217 B
PHP
13 lines
217 B
PHP
--TEST--
|
|
Testing nested list() with empty array
|
|
--FILE--
|
|
<?php
|
|
|
|
list($a, list($b, list(list($d)))) = array();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined offset: 0 in %s on line %d
|
|
|
|
Notice: Undefined offset: 1 in %s on line %d
|