blob: 6804ba606695b48a4a9d6e4d1b7b7a719cd0c90d [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
// ISSUE: KT-61095
package org.example
interface Base<P> {
fun child(props: Int = 10)
}
interface Intermediate<P> : Base<P>
class Implementation<P>() : Intermediate<P>, Base<P> {
override fun child(props: Int) {}
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, interfaceDeclaration, nullableType,
override, primaryConstructor, typeParameter */