Files
kotlin-fork/analysis/low-level-api-fir/testdata/getOrBuildFir/calls/compoundAssignOnVal_lhs.kt
T
Tianyu Geng bc95733818 FIR LL API: resolve PSI elements to more specific FIR element
Compound access and implicit delegated constructor are mapped to FIR
elements that are way too broad.
2021-12-06 12:40:41 +01:00

6 lines
94 B
Kotlin

interface A {
operator fun plusAssign(i: Int)
}
fun test(l: A) {
<expr>l</expr> += 1
}