mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
15 lines
244 B
PHP
15 lines
244 B
PHP
--TEST--
|
|
Bug #72441 (Segmentation fault: RFC list_keys)
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = [];
|
|
|
|
list(
|
|
'' => $foo,
|
|
$bar
|
|
) = $array;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot mix keyed and unkeyed array entries in assignments in %sbug72441.php on line %d
|