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