Files
kotlin-fork/compiler/testData/cfg/expressions/nothingExpr.kt
T
2014-06-03 18:17:05 +04:00

8 lines
127 B
Kotlin

fun Any?.doSomething() {}
fun bar(): Nothing = throw Exception()
fun foo() {
null!!.doSomething()
bar().doSomething
}