[AA] Add additional KDoc reference resolution tests for callables
- This adds KDoc reference resolution tests for callables in nested and inner classes, overloaded functions, and private callables. - Private declarations are visible in KDoc from outside their containing classes. This is in line with K1 KDoc behavior. ^KTIJ-22324
This commit is contained in:
committed by
Space Team
parent
ef484c7518
commit
f04b27b90b
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
inner class Inner {
|
||||
fun foo() {}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* [Foo.Inner.<caret>foo]
|
||||
*/
|
||||
fun usage() {}
|
||||
Reference in New Issue
Block a user