blob: 1ad8374a249e74ce1c37d7238b12d5441c78cc5a [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
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 */