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