summaryrefslogtreecommitdiff
path: root/Zend/tests/array_unpack/in_destructuring.phpt
blob: fed2826d29da5b38e6b05b270bb90efbcee05abc (plain)
1
2
3
4
5
6
7
8
9
10
--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