mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
10 lines
212 B
PHP
10 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
|