6a9d058db4
(cherry picked from commit aac8e94)
10 lines
111 B
Kotlin
Vendored
10 lines
111 B
Kotlin
Vendored
fun test5() {
|
|
var a: Int
|
|
try {
|
|
a = 3
|
|
}
|
|
finally {
|
|
a = 5
|
|
}
|
|
a.hashCode()
|
|
} |