[AA] Add tests for KDoc reference resolution of companion object members

^KTIJ-25995
This commit is contained in:
Marco Pennekamp
2023-10-10 18:54:55 +02:00
committed by Space Team
parent 3dbae89cdd
commit 367b84d45e
27 changed files with 570 additions and 0 deletions
@@ -0,0 +1,10 @@
class A {
companion object {
fun toName(): String = ""
}
}
/**
* [A.<caret>toName.length]
*/
fun foo() {}
@@ -0,0 +1,2 @@
Resolved to:
0: (in A.Companion) fun toName(): kotlin.String