Files
kotlin-fork/compiler/testData/codegen/box/properties/kt9603.kt
T
2023-12-26 10:18:19 +00:00

14 lines
218 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63984
fun <T> eval(fn: () -> T) = fn()
class A {
public var prop = "OK"
private set
fun test(): String {
return eval { prop }
}
}
fun box(): String = A().test()