summaryrefslogtreecommitdiff
path: root/Zend/tests/nullsafe_operator/004.phpt
blob: 0dc95d3f1a5584714adf0d6f2657df9027635431 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Test nullsafe property 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