ec4cbfef59
Implementation for PSI only
12 lines
241 B
Kotlin
Vendored
12 lines
241 B
Kotlin
Vendored
fun test11() {
|
|
fun Any.bar(i: Int) {}
|
|
todo()<!UNREACHABLE_CODE!>.bar(1)<!>
|
|
}
|
|
|
|
fun test12() {
|
|
fun Any.bar(i: Int) {}
|
|
todo()<!UNREACHABLE_CODE!><!UNNECESSARY_SAFE_CALL!>?.<!>bar(1)<!>
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception()
|