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

8 lines
163 B
Kotlin
Vendored

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