php-src/Zend/tests/nullsafe_operator/020.phpt
2020-08-09 22:03:36 +02:00

20 lines
291 B
PHP

--TEST--
Test nullsafe lhs of assignment to nested property chain
--FILE--
<?php
class Foo {
public $bar;
}
function bar() {
var_dump('called');
}
$foo = null;
$foo?->bar->baz = bar();
?>
--EXPECTF--
Fatal error: Can't use nullsafe operator in write context in %s.php on line 12