blob: 8f750c06d5ad5a12f41a0b3e9b968db80c81f41c [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
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 */