assign_coalesce_005.phpt 214 B

1234567891011121314
  1. --TEST--
  2. Coalesce assign (??=): Cannot reassign $this
  3. --FILE--
  4. <?php
  5. class Test {
  6. public function foobar() {
  7. $this ??= 123;
  8. }
  9. }
  10. ?>
  11. --EXPECTF--
  12. Fatal error: Cannot re-assign $this in %s on line %d