1--TEST--
2object and static are redundant
3--FILE--
4<?php
5
6class Test {
7    public function foo(): static|object {}
8}
9
10?>
11--EXPECTF--
12Fatal error: Type static|object contains both object and a class type, which is redundant in %s on line %d
13