FIR checker: reproduce KT-43156
This commit is contained in:
committed by
teamcityserver
parent
f4347a60c2
commit
7b06885348
@@ -0,0 +1,12 @@
|
||||
class A {
|
||||
fun test() {
|
||||
val a: A
|
||||
synchronized(this) {
|
||||
if (bar()) throw RuntimeException()
|
||||
a = A()
|
||||
}
|
||||
a.bar()
|
||||
}
|
||||
|
||||
fun bar() = false
|
||||
}
|
||||
Reference in New Issue
Block a user