blob: 5ce3c5484bda2927ad1c894fe095c99bc0147af3 [file]
// RUN_PIPELINE_TILL: FRONTEND
fun assignedInTry() {
val a: Int
try {
a = 42
} finally {
}
a.hashCode()
}
fun sideEffectBeforeAssignmentInTry(s: Any) {
val a: Int
try {
s as String // Potential cast exception
a = 42
} finally {
}
a.hashCode()
}
fun assignedInTryAndFinally() {
val a: Int
try {
<!UNUSED_VALUE!>a =<!> 42
} finally {
<!VAL_REASSIGNMENT!>a<!> = 41
}
a.hashCode()
}
fun sideEffectBeforeAssignmentInTryButNotFinally(s: Any) {
val a: Int
try {
s as String // Potential cast exception
<!UNUSED_VALUE!>a =<!> 42
} finally {
<!VAL_REASSIGNMENT!>a<!> = 41
}
a.hashCode()
}
/* GENERATED_FIR_TAGS: asExpression, assignment, functionDeclaration, integerLiteral, localProperty, propertyDeclaration,
tryExpression */