Files
kotlin-fork/compiler/testData/cfg-variables/bugs/kt9825.kt
T

10 lines
111 B
Kotlin
Vendored

fun test5() {
var a: Int
try {
a = 3
}
finally {
a = 5
}
a.hashCode()
}