Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/blockUsesDifferentVar.kt
T
2014-03-12 16:02:55 +04:00

15 lines
184 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun main(args: Array<String>) {
val foo = null
val a = "a"
val b = "b"
if (foo != null<caret>) {
a
}
else {
b
}
}