bc95733818
Compound access and implicit delegated constructor are mapped to FIR elements that are way too broad.
6 lines
94 B
Kotlin
6 lines
94 B
Kotlin
interface A {
|
|
operator fun plusAssign(i: Int)
|
|
}
|
|
fun test(l: A) {
|
|
<expr>l</expr> += 1
|
|
} |