blob: 324faafe3da4c9354dce5ebcdf1431386955fa12 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
interface Base {
fun f() = 1
}
open class Left() : Base
interface Right : Base
class Diamond() : Left(), Right
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, interfaceDeclaration, primaryConstructor */