php-src/Zend/tests/list_010.phpt

12 lines
164 B
Plaintext
Raw Normal View History

--TEST--
Do not allow mixing [] and list()
--FILE--
<?php
list([$a]) = [[1]];
var_dump($a);
?>
--EXPECTF--
Fatal error: Cannot mix [] and list() in %s on line %d