mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
e829d08729
RFC: https://wiki.php.net/rfc/spread_operator_for_array Closes GH-3640.
11 lines
212 B
PHP
11 lines
212 B
PHP
--TEST--
|
|
Spread operator is not supported in destructuring assignments
|
|
--FILE--
|
|
<?php
|
|
|
|
[$head, ...$tail] = [1, 2, 3];
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Spread operator is not supported in assignments in %s on line %d
|