79cec6411d
like for 'return todo()' mark only 'return'
23 lines
491 B
Kotlin
23 lines
491 B
Kotlin
//KT-2585 Code in try-finally is incorrectly marked as unreachable
|
|
|
|
fun foo() {
|
|
try {
|
|
<!UNREACHABLE_CODE!>throw<!> RuntimeException()
|
|
} catch (e: Exception) {
|
|
<!UNREACHABLE_CODE!>return<!> // <- Wrong UNREACHABLE_CODE
|
|
} finally {
|
|
while (true);
|
|
}
|
|
}
|
|
|
|
fun bar() {
|
|
try {
|
|
throw RuntimeException()
|
|
} catch (e: Exception) {
|
|
return // <- Wrong UNREACHABLE_CODE
|
|
} finally {
|
|
while (cond());
|
|
}
|
|
}
|
|
|
|
fun cond() = true |