ec4cbfef59
Implementation for PSI only
12 lines
206 B
Kotlin
Vendored
12 lines
206 B
Kotlin
Vendored
fun testIf() {
|
|
if (todo()) <!UNREACHABLE_CODE!>1<!> else <!UNREACHABLE_CODE!>2<!>
|
|
}
|
|
|
|
fun testIf1(b: Boolean) {
|
|
if (b) todo() else 1
|
|
|
|
bar()
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception()
|
|
fun bar() {} |