Files
kotlin-fork/idea/testData/intentions/branched/ifThenToDoubleBang/blockUsesDifferentVar.kt
T
2014-04-22 22:33:08 +04:00

15 lines
211 B
Kotlin
Vendored

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