1--TEST-- 2Test nullsafe in binary op 3--FILE-- 4<?php 5 6(new stdClass)->{null?->x}->y; 7 8?> 9--EXPECTF-- 10Warning: Undefined property: stdClass::$ in %s on line 3 11 12Warning: Attempt to read property "y" on null in %s on line 3 13