blob: 0b68bd0244125641eb49f5aa631f89d9ee83b909 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
interface Base<P> {
fun f() = 1
}
open class Left<P>() : Base<P>
interface Right<P> : Base<P>
class Diamond<P>() : Left<P>(), Right<P>
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, interfaceDeclaration, nullableType,
primaryConstructor, typeParameter */