Files
kotlin-fork/compiler/testData/codegen/box/properties/kt9603.kt
T
2019-11-19 11:00:09 +03:00

12 lines
179 B
Kotlin
Vendored

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