1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/Zend/tests/const_expr_dim_on_null_warning.phpt
2022-08-04 11:24:16 +02:00

11 lines
209 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 value of type null in %s on line %d
NULL