Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
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
}
}