1--TEST-- 2Cannot make hook explicitly final in final property 3--FILE-- 4<?php 5 6class Test { 7 final public $prop { 8 final get => $field; 9 } 10} 11 12?> 13===DONE=== 14--EXPECT-- 15===DONE=== 16