Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/applicableForLocalStableVar.kt
T
2019-06-07 12:23:54 +07:00

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
}