Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
assignedInSynchronized.kt
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
}