Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlFlowAnalysis
/
propertiesInitWithOtherInstanceThisLabel.fir.kt
blob: ed28c8edac7d2bd5e9f2fc4cd2138fea697a6e33 [
file
]
class
A
(
val
next
:
A
?
=
null
)
{
val x
:
String
init
{
next
?.
x
=
"a"
this
@A
.
x
=
"b"
this
.
x
=
"c"
x
=
"d"
// don't repeat the same diagnostic again with this receiver
this
@A
.
x
=
"e"
next
?.
x
=
"f"
}
}