Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
assignedInFinally.kt
blob: e93f25ac05ef761953f0d88f6e278ef92a276768 [
file
]
fun test5
()
{
var
a
:
Int
try
{
<!
UNUSED_VALUE
!>
a
=<!>
3
}
finally
{
a
=
5
}
a
.
hashCode
()
}