1--TEST--
2Abstract hooks that are not implemented throw an error
3--FILE--
4<?php
5
6abstract class A {
7    public abstract $prop {
8        get;
9        set {}
10    }
11}
12
13class B extends A {}
14
15?>
16--EXPECTF--
17Fatal error: Class B contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (A::$prop::get) in %s on line %d
18