Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
assignedInFinally.fir.kt
blob: 46dc8b1e6ac0a104d1818aa4e5e7b49b4802e2b9 [
file
]
fun test5
()
{
var
a
:
Int
try
{
a
=
3
}
finally
{
a
=
5
}
a
.
hashCode
()
}