1--TEST--
2Test nullsafe property coalesce assignment
3--FILE--
4<?php
5
6$foo = null;
7var_dump($foo?->bar ??= 'bar');
8
9?>
10--EXPECTF--
11Fatal error: Can't use nullsafe operator in write context in %s.php on line 4
12