1--TEST--
2Parent private property types must be ignored
3--FILE--
4<?php
5
6class A {
7	private $prop = "1";
8}
9class B extends A {
10	private int $prop = 2;
11}
12
13var_dump((function () { return $this->prop; })->call(new B));
14
15?>
16--EXPECT--
17int(2)
18