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

15 lines
210 B
Kotlin

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