Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/kt8050.kt
T

12 lines
180 B
Kotlin
Vendored

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
}
}