blob: 409bc8635644be8558a40283e1f054f1a5f9be5f [file]
// RUN_PIPELINE_TILL: BACKEND
class A {
fun test() {
val a: A
synchronized(this) {
if (bar()) throw RuntimeException()
a = A()
}
a.bar()
}
fun bar() = false
}
/* GENERATED_FIR_TAGS: assignment, classDeclaration, functionDeclaration, ifExpression, lambdaLiteral, localProperty,
propertyDeclaration, thisExpression */