f2accb7b9e
#KT-16067 Fixed
14 lines
201 B
Kotlin
Vendored
14 lines
201 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun maybeFoo(): String? {
|
|
return "foo"
|
|
}
|
|
|
|
fun test(): String? {
|
|
var foo = maybeFoo()
|
|
val bar = if (foo == null<caret>)
|
|
"hello"
|
|
else
|
|
foo
|
|
return foo
|
|
}
|