Files
kotlin-fork/compiler/testData/codegen/box/jvmStatic/propertyGetterDelegatesToAnother.kt
T
2018-07-13 13:43:02 +03:00

13 lines
222 B
Kotlin
Vendored

// WITH_RUNTIME
// TARGET_BACKEND: JVM
object ObjectThisTest {
val testValue: String
@JvmStatic get() = this.testValue2
val testValue2: String
get() = "OK"
}
fun box() = ObjectThisTest.testValue