FIR checker: reproduce KT-43156

This commit is contained in:
Jinseong Jeon
2020-11-04 14:14:05 -08:00
committed by teamcityserver
parent f4347a60c2
commit 7b06885348
9 changed files with 84 additions and 2 deletions
@@ -0,0 +1,12 @@
class A {
fun test() {
val a: A
synchronized(this) {
if (bar()) throw RuntimeException()
a = A()
}
a.bar()
}
fun bar() = false
}