Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/assignment.kt
T

8 lines
163 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun withAssign(arg: String?): String {
var result: String = ""
arg?.let<caret> { result = it }
return result
}