1--TEST--
2Asymmetric visibility with no type
3--FILE--
4<?php
5
6class Foo {
7    public private(set) $bar;
8}
9
10?>
11--EXPECTF--
12Fatal error: Property with asymmetric visibility Foo::$bar must have type in %s on line %d
13