mirror of
https://github.com/php/php-src.git
synced 2024-12-17 13:59:28 +08:00
c48b745f00
This implements the last remaining part of the https://wiki.php.net/rfc/engine_warnings RFC. Closes GH-5927.
13 lines
223 B
PHP
13 lines
223 B
PHP
--TEST--
|
|
Testing nested list() with empty array
|
|
--FILE--
|
|
<?php
|
|
|
|
list($a, list($b, list(list($d)))) = array();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined array key 0 in %s on line %d
|
|
|
|
Warning: Undefined array key 1 in %s on line %d
|