Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmStatic
/
propertyGetterDelegatesToAnother.kt
blob: cd96e208e57b4975ca2a384346e095ab6e5a4750 [
file
] [
log
] [
blame
]
// WITH_STDLIB
// TARGET_BACKEND: JVM
object
ObjectThisTest
{
val testValue
:
String
@JvmStatic
get
()
=
this
.
testValue2
val testValue2
:
String
get
()
=
"OK"
}
fun box
()
=
ObjectThisTest
.
testValue