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

12 lines
174 B
Kotlin
Vendored

// PROBLEM: none
fun maybeFoo(): String? {
return "foo"
}
fun main(args: Array<String>) {
if (maybeFoo() == null<caret>)
maybeFoo()
else
"bar"
}