Files
kotlin-fork/compiler/testData/cfg/expressions/nothingExpr.kt
T
2014-07-28 13:07:30 +04:00

8 lines
129 B
Kotlin
Vendored

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