5b77def0e0
Related to KT-7675
14 lines
222 B
Kotlin
Vendored
14 lines
222 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// HIGHLIGHT: INFORMATION
|
|
fun maybeFoo(): String? {
|
|
return "foo"
|
|
}
|
|
|
|
fun convert(x: String, y: Int) = ""
|
|
|
|
fun foo(it: Int) {
|
|
val foo = maybeFoo()
|
|
<caret>if (foo == null) else convert(foo, it)
|
|
}
|
|
|