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

14 lines
196 B
Plaintext
Vendored

// WITH_RUNTIME
// HIGHLIGHT: INFORMATION
fun maybeFoo(): String? {
return "foo"
}
fun convert(x: String, y: Int) = ""
fun foo(it: Int) {
maybeFoo()?.let { it1 -> convert(it1, it) }
}