Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/call.kt
T
2018-08-15 12:36:01 +03:00

6 lines
140 B
Kotlin
Vendored

// WITH_RUNTIME
fun convert(x: String, y: String) = ""
fun foo(a: String?, b: String) {
<caret>if (a != null) convert(a, b) else null
}