Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
assignedInSynchronized.kt
blob: 9f592fa20b0ea5a56d70c952061bb498f30e7787 [
file
]
// FIR_IDENTICAL
class
A
{
fun test
()
{
val a
:
A
synchronized
(
this
)
{
if
(
bar
())
throw
RuntimeException
()
a
=
A
()
}
a
.
bar
()
}
fun bar
()
=
false
}