b97aaf0f71
Relates to #KT-32010
8 lines
156 B
Kotlin
Vendored
8 lines
156 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
|
|
fun withAssign(arg: String?): String {
|
|
var result: String = ""
|
|
arg?.let<caret> { result = it }
|
|
return result
|
|
} |