d7a60f5fed
KT-2369 Variable is not marked as uninitialized in 'finally' section #KT-2369 fixed KT-2585 Code in try-finally is incorrectly marked as unreachable #KT-2585 fixed KT-2972 Wrong "unused value" warning when finally is present #KT-2972 fixed
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 |