[KSP2] KSPropertyDeclaration.getter is empty for property that is duplicated in two parent interfaces
Open
analysis-api
bug
core
P3
- Dominant language
- Kotlin
- Stars
- 3.5k
- Forks
- 415
- Avg merge
- 1d 2h
- Merged PRs (30d)
- 53
Description
```
class TestClass
interface Deps1 {
val testClass: TestClass
}
interface Deps2 {
val testClass: TestClass
}
interface Root: Deps1, Deps2
```
In that case `getter` of `testClass` property is null, while in KSP1 it returns actual getter.
Contributor guide
Assessment
This issue has not been assessed yet.