8 lines
129 B
Kotlin
Vendored
8 lines
129 B
Kotlin
Vendored
fun Any?.doSomething() {}
|
|
|
|
fun bar(): Nothing = throw Exception()
|
|
|
|
fun foo() {
|
|
null!!.doSomething()
|
|
bar().doSomething()
|
|
} |