mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
10 lines
187 B
PHP
10 lines
187 B
PHP
--TEST--
|
|
Unpacking of string keys detected at compile-time
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump([...['a' => 'b']]);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot unpack array with string keys in %s on line %d
|