Files
kotlin-fork/compiler/testData/codegen/boxInline/syntheticAccessors/superProperty.2.kt
T
2015-11-11 14:34:47 +03:00

15 lines
196 B
Kotlin
Vendored

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