mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
23 lines
491 B
Kotlin
Vendored
23 lines
491 B
Kotlin
Vendored
//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 |