mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
11 lines
195 B
PHP
11 lines
195 B
PHP
--TEST--
|
|
DIM on null in constant expr should emit warning
|
|
--FILE--
|
|
<?php
|
|
const C = (null)['foo'];
|
|
var_dump(C);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Trying to access array offset on null in %s on line %d
|
|
NULL
|