1--TEST--
2Default value not legal for any type in the union
3--FILE--
4<?php
5
6class Test {
7    public int|float $prop = "0";
8}
9
10?>
11--EXPECTF--
12Fatal error: Cannot use string as default value for property Test::$prop of type int|float in %s on line %d
13