1--TEST--
2Property hooks in interfaces
3--FILE--
4<?php
5
6interface I {
7    public $prop { get; set; }
8}
9
10class C implements I {
11}
12
13?>
14--EXPECTF--
15Fatal error: Class C contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (I::$prop::get, I::$prop::set) in %s on line %d
16