f5cfec4a91
#KT-7675 Fixed
6 lines
140 B
Kotlin
Vendored
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
|
|
} |