Files
kotlin-fork/compiler/testData/codegen/box/properties/kt9603.kt
T

11 lines
149 B
Kotlin
Vendored

class A {
public var prop = "OK"
private set
fun test(): String {
return { prop }()
}
}
fun box(): String = A().test()