blob: 8e84214c82f733a95ff5a5f8ee9de1ee739a1b6f [file] [log] [blame]
fun Any?.doSomething() {}
fun bar(): Nothing = throw Exception()
fun foo() {
null!!.doSomething()
bar().doSomething()
}