1--TEST--
2Interface may contain only get with no implementation
3--FILE--
4<?php
5
6interface I {
7    public $prop { get; }
8}
9
10class A implements I {
11    public $prop { get {} }
12}
13
14?>
15--EXPECTF--
16