015.phpt 219 B

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