Files
kotlin-fork/compiler/testData/codegen/regressions/kt2481.kt
T
2012-07-28 14:17:42 +03:00

15 lines
233 B
Kotlin

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()
})()
}
}