Unexpected entries from KaDeclarationContainerSymbol.declaredMemberScope.declarations
Open
P3
- Dominant language
- Kotlin
- Stars
- 3.5k
- Forks
- 415
- Avg merge
- 1d 2h
- Merged PRs (30d)
- 53
Description
```
// FILE: K.kt
public interface K1 {
fun getProp(): String = "1"
}
public interface K2 {
val prop: String = "2"
}
// FILE: JI.java
public interface JI extends K1, K2 {
}
```
the synthetic getter that pretends to be a `KtNamedFunction` is returned, in the context of a Java interface
Contributor guide
Assessment
This issue has not been assessed yet.