204d9e3423
So #KT-20714 Fixed
17 lines
288 B
Kotlin
Vendored
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 = ""
|
|
} |