Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fcbc6b84598bef4d4ca95c593070c2a5cba1da35
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
kt8050.kt
blob: 12547d5543d6d787889aceaef92a0a7120a656b6 [
file
]
private
class
X
private
operator
fun X
?.
plus
(
p
:
Int
)
=
X
()
class
C
{
private
val map
=
hashMapOf
<
String
,
X
>()
fun f
()
{
map
<!
NO_SET_METHOD
!>[
""
]<!>
+=
1
}
}