1--TEST--
2A DNF type which contains object is redundant 2
3--FILE--
4<?php
5
6interface A {}
7interface B {}
8
9function test(): object|(A&B) {}
10
11?>
12===DONE===
13--EXPECTF--
14Fatal error: Type (A&B)|object contains both object and a class type, which is redundant in %s on line %d
15