Files
kotlin-fork/backend.native/tests/external/codegen/box/jvmStatic/propertyGetterDelegatesToAnother.kt
T
2017-03-13 15:31:46 +03:00

13 lines
222 B
Kotlin

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