1--TEST--
2Test typed properties ignore private props during inheritance
3--FILE--
4<?php
5class Foo {
6	private int $thing;
7}
8
9class Bar extends Foo {
10    public string $thing; // No conflict
11}
12
13echo "ok";
14?>
15--EXPECT--
16ok
17