1--TEST--
2Generator return type with multiple classes
3--FILE--
4<?php
5
6interface I {
7    public function test(): Generator|ArrayAccess|array;
8}
9class C implements I {
10    function test(): Generator|ArrayAccess|array {
11        yield;
12    }
13}
14
15?>
16===DONE===
17--EXPECT--
18===DONE===
19