a8ae704c0c
For property access with implicit receiver, the resolved fir is a FirPropertyAccessExpression and hence we need to handle it in KtFirCallResolver.
7 lines
70 B
Kotlin
Vendored
7 lines
70 B
Kotlin
Vendored
class A {
|
|
var i: Int = 1
|
|
}
|
|
|
|
fun A.foo() {
|
|
<expr>i</expr> = 1
|
|
} |