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

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