1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 13:31:27 +02:00
Files
archived-php-src/Zend/tests/nullsafe_operator/038.phpt
2020-08-31 16:44:36 +02:00

13 lines
180 B
PHP

--TEST--
Test nullsafe operator in nested delayed dims 2
--FILE--
<?php
$foo = (object) ['bar' => 0];
$array = [[null]];
var_dump($array[0][$foo->bar]?->baz);
?>
--EXPECT--
NULL