Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/nullableThen.kt
T
2019-06-07 12:23:54 +07:00

7 lines
134 B
Kotlin
Vendored

// PROBLEM: none
fun foo(p: String?): String? {
return <caret>if (p != null) p.bar() else "a"
}
fun String.bar(): String? = null