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