php-parser/test/code/prettyPrinter/expr/arraySpread.test

9 lines
93 B
Plaintext
Raw Normal View History

2019-05-09 15:11:00 +02:00
Array spread
-----
<?php
[$a, $b] = [...$c, ...$d];
-----
!!php7
[$a, $b] = [...$c, ...$d];