f2accb7b9e
#KT-16067 Fixed
12 lines
155 B
Kotlin
Vendored
12 lines
155 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo(s: String?) {
|
|
val x = <caret>if (s != null) {
|
|
bar(s)
|
|
}
|
|
else {
|
|
13
|
|
}
|
|
}
|
|
|
|
fun bar(s: String): Int = 42 |