Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/kt2585_3.kt
T
Svetlana Isakova d7a60f5fed added tests for KT-2369, KT-2585 and KT-2972
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
2012-12-18 16:00:26 +04:00

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()
}
}