Files
kotlin-fork/compiler/testData/codegen/box/functions/kt2481.kt
T
2018-06-28 12:26:41 +02:00

16 lines
259 B
Kotlin
Vendored

// IGNORE_BACKEND: 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()
})()
}
}