79cec6411d
like for 'return todo()' mark only 'return'
9 lines
292 B
Kotlin
9 lines
292 B
Kotlin
//KT-2585 Code in try-finally is incorrectly marked as unreachable
|
|
|
|
fun foo(<!UNUSED_PARAMETER!>x<!>: String): String {
|
|
try {
|
|
<!UNREACHABLE_CODE!>throw<!> RuntimeException() //should be marked as unreachable, but is not
|
|
} finally {
|
|
throw NullPointerException()
|
|
}
|
|
} |