mirror of
https://github.com/php/php-src.git
synced 2025-01-23 04:04:16 +08:00
11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
|
--TEST--
|
||
|
Empty list() assignments are not allowed
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
list(,,,,,,,,,,) = [];
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Cannot use empty list in %s on line %d
|