1--TEST--
2iterable type with object and class T should be redundant
3--FILE--
4<?php
5
6function bar(): T|iterable|object|null {
7    return null;
8}
9
10?>
11--EXPECTF--
12Fatal error: Type T|Traversable|object|array|null contains both object and a class type, which is redundant in %s on line %d
13