5b77def0e0
Related to KT-7675
8 lines
163 B
Kotlin
Vendored
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
|
|
}
|