bc95733818
Compound access and implicit delegated constructor are mapped to FIR elements that are way too broad.
11 lines
172 B
Kotlin
11 lines
172 B
Kotlin
interface A {
|
|
operator fun plusAssign(i: Int)
|
|
}
|
|
|
|
interface MyMap<K, V> {
|
|
operator fun get(k: K): V
|
|
}
|
|
|
|
fun test(m: MyMap<String, A>) {
|
|
<expr>m["a"] += 1</expr>
|
|
} |