[AA] Add tests for KDoc reference resolution of non-static callables
^KTIJ-26003
This commit is contained in:
committed by
Space Team
parent
2acee69908
commit
3dbae89cdd
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
class A {
|
||||
fun toName(): String = ""
|
||||
}
|
||||
|
||||
/**
|
||||
* [A.<caret>toName.length]
|
||||
*/
|
||||
fun foo() {}
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
Resolved to:
|
||||
0: (in A) fun toName(): kotlin.String
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
open class SuperClass {
|
||||
fun toName(): String = ""
|
||||
}
|
||||
|
||||
class A : SuperClass()
|
||||
|
||||
/**
|
||||
* [A.<caret>toName.length]
|
||||
*/
|
||||
fun foo() {}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
Resolved to:
|
||||
0: (in SuperClass) fun toName(): kotlin.String
|
||||
Reference in New Issue
Block a user