Files
kotlin-fork/compiler/testData/codegen/box/jvmStatic/propertyGetterDelegatesToAnother.kt
T
2019-11-19 11:00:09 +03:00

14 lines
252 B
Kotlin
Vendored

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