1--TEST--
2Test typed properties inheritance (scalar)
3--FILE--
4<?php
5class Foo {
6	public int $qux;
7}
8
9class Bar extends Foo {
10	public string $qux;
11}
12?>
13--EXPECTF--
14Fatal error: Type of Bar::$qux must be int (as in class Foo) in %s on line 8
15