summaryrefslogtreecommitdiff
path: root/Zend/tests/nullsafe_operator/008.phpt
blob: 360d137b86c1c3a933861979836ba5387513ca17 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Test nullsafe property coalesce assignment
--FILE--
<?php

$foo = null;
var_dump($foo?->bar ??= 'bar');

?>
--EXPECTF--
Fatal error: Can't use nullsafe operator in write context in %s.php on line 4