php-8.0.30-src/Zend/tests/assign_coalesce_005.phpt

15 lines
214 B
PHP

--TEST--
Coalesce assign (??=): Cannot reassign $this
--FILE--
<?php
class Test {
public function foobar() {
$this ??= 123;
}
}
?>
--EXPECTF--
Fatal error: Cannot re-assign $this in %s on line %d