mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
11 lines
183 B
PHP
11 lines
183 B
PHP
--TEST--
|
|
Constant expressions with empty dimension fetch on coalesce
|
|
--FILE--
|
|
<?php
|
|
|
|
const A = [][] ?? 1;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use [] for reading in %s.php on line %d
|
|
|