Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
assignedInFinally.kt
blob: 58fe3eaf69369ca9e44d1f76aafe99a234eae984 [
file
]
// RUN_PIPELINE_TILL: BACKEND
fun test5
()
{
var
a
:
Int
try
{
<!
UNUSED_VALUE
!>
a
=<!>
3
}
finally
{
a
=
5
}
a
.
hashCode
()
}
/* GENERATED_FIR_TAGS: assignment, functionDeclaration, integerLiteral, localProperty, propertyDeclaration,
tryExpression */