blob: 46dc8b1e6ac0a104d1818aa4e5e7b49b4802e2b9 [file]
fun test5() {
var a: Int
try {
a = 3
}
finally {
a = 5
}
a.hashCode()
}