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