Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/kt2369.kt
T

13 lines
240 B
Kotlin
Vendored

//KT-2369 Variable is not marked as uninitialized in 'finally' section
fun main() {
var x : Int
try {
throw Exception()
}
finally {
doSmth(<!UNINITIALIZED_VARIABLE!>x<!> + 1)
}
}
fun doSmth(a: Any?) = a