blob: 9f592fa20b0ea5a56d70c952061bb498f30e7787 [file] [log] [blame]
// FIR_IDENTICAL
class A {
fun test() {
val a: A
synchronized(this) {
if (bar()) throw RuntimeException()
a = A()
}
a.bar()
}
fun bar() = false
}