1--TEST--
2Cannot declare final hook in interface
3--FILE--
4<?php
5interface I {
6    public $prop { final get; }
7}
8?>
9--EXPECTF--
10Fatal error: Property hook cannot be both abstract and final in %s on line %d
11