1--TEST--
2Cannot have explicitly abstract property in interface
3--FILE--
4<?php
5
6interface I {
7    abstract public $prop { get; set; }
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