list_010.phpt 164 B

1234567891011
  1. --TEST--
  2. Do not allow mixing [] and list()
  3. --FILE--
  4. <?php
  5. list([$a]) = [[1]];
  6. var_dump($a);
  7. ?>
  8. --EXPECTF--
  9. Fatal error: Cannot mix [] and list() in %s on line %d