1--TEST--
2Property hooks in interfaces cannot be explicitly abstract
3--FILE--
4<?php
5
6interface I {
7    public abstract $prop { get; }
8}
9
10?>
11--EXPECTF--
12Fatal error: Property in interface cannot be explicitly abstract. All interface members are implicitly abstract in %s on line %d
13