1--TEST--
2Test nullsafe operator in nested delayed dims
3--FILE--
4<?php
5
6$foo = new stdClass();
7$foo->bar = 'bar';
8
9$array = ['foo' => ['bar' => 'baz']];
10
11var_dump($array['foo'][$foo?->bar]);
12
13?>
14--EXPECT--
15string(3) "baz"
16