Files
kotlin-fork/compiler/testData/codegen/boxInline/syntheticAccessors/withinInlineLambda/directFieldAccess.1.kt
T

25 lines
407 B
Kotlin
Vendored

import test.*
class A {
private val prop : String = "O"
get() = call {field + "K" }
private val prop2 : String = "O"
get() = call { call {field + "K" } }
fun test1(): String {
return prop
}
fun test2(): String {
return prop2
}
}
fun box(): String {
val a = A()
if (a.test1() != "OK") return "fail 1: ${a.test1()}"
return a.test2()
}