Files
kotlin-fork/compiler/testData/codegen/boxInline/syntheticAccessors/superProperty.kt
T

25 lines
286 B
Kotlin
Vendored

// FILE: 1.kt
package test
open class A {
open val test = "OK"
}
object X : A() {
override val test: String
get() = "fail"
inline fun doTest(): String {
return super.test
}
}
// FILE: 2.kt
import test.*
fun box(): String {
return X.doTest()
}