Files
kotlin-fork/compiler/testData/codegen/box/functions/kt2481.kt
T
2019-11-19 11:00:09 +03:00

16 lines
263 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun box() =
B().method()
public open class A(){
public open fun method() : String = "OK"
}
public class B(): A(){
public override fun method() : String {
return ({
super.method()
})()
}
}