Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
propertyGetterDelegatesToAnother.kt
blob: 767a0b188aec84949173bd5241cb166903811d72 [
file
]
// WITH_RUNTIME
// TARGET_BACKEND: JVM
object
ObjectThisTest
{
val testValue
:
String
@JvmStatic
get
()
=
this
.
testValue2
val testValue2
:
String
get
()
=
"OK"
}
fun box
()
=
ObjectThisTest
.
testValue