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

4 lines
108 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun plusNullable(arg: String?) = arg?.let<caret> { it + "#" } ?: ""