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

14 lines
171 B
Kotlin
Vendored

fun maybeFoo(): String? {
return "foo"
}
val x = maybeFoo()
fun main(args: Array<String>) {
if (x !=<caret> null) {
x
} else {
"abc"
}
}