Files
kotlin/compiler/testData/codegen/box/properties/classFieldInsideLambda.kt
2018-08-09 14:22:50 +03:00

6 lines
92 B
Kotlin
Vendored

class My {
val my: String = "O"
get() = { field }() + "K"
}
fun box() = My().my