Files
kotlin-fork/idea/testData/inspectionsLocal/selfAssignment/applyCorrect.kt
T
2017-11-02 11:07:52 +03:00

17 lines
288 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
// Minimized from KT-20714 itself
class ServerUser {
var id = ""
var city = ""
fun toClientUser() = ClientUser().apply {
id = <caret>this@ServerUser.id
city = this@ServerUser.city
}
}
class ClientUser {
var id = ""
}