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