blob: cb9d77ae01baed52a1bea8e88c3dea46a779afdf [file]
// RUN_PIPELINE_TILL: BACKEND
abstract class B() {
abstract fun foo2(arg: Int = 239) : Int
}
class C() : B() {
override fun foo2(arg: Int) : Int = arg
}
fun invokeIt() {
C().foo2()
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, override, primaryConstructor */