php-8.0.30-src/Zend/tests/nullsafe_operator/015.phpt

13 lines
219 B
PHP

--TEST--
Test nullsafe in binary op
--FILE--
<?php
(new stdClass)->{null?->x}->y;
?>
--EXPECTF--
Warning: Undefined property: stdClass::$ in %s on line 3
Warning: Attempt to read property "y" on null in %s on line 3