php-parser/test/code/prettyPrinter/expr/arraySpread.test
2019-05-09 19:15:35 +02:00

9 lines
93 B
Plaintext

Array spread
-----
<?php
[$a, $b] = [...$c, ...$d];
-----
!!php7
[$a, $b] = [...$c, ...$d];