blob: 245ce470e750939a715fea60e32769de1d5d25ce [file] [log] [blame]
fun test5() {
var a: Int
try {
a = 3
}
finally {
a = 5
}
a.hashCode()
}