Files
kotlin-fork/idea/testData/inspectionsLocal/complexRedundantLet/assignment.kt
T
2019-06-25 14:37:04 +07:00

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
}