mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
|
--TEST--
|
||
|
Disallow empty elements in normal arrays
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
var_dump([, 1, 2]);
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Cannot use empty array elements in arrays in %s on line %d
|