php-8.0.30-src/Zend/tests/nullsafe_operator/024.phpt

12 lines
201 B
PHP

--TEST--
Test nullsafe as foreach target
--FILE--
<?php
$foo = null;
foreach ([1, 2, 3] as $foo?->bar) {}
?>
--EXPECTF--
Fatal error: Can't use nullsafe operator in write context in %s.php on line 4