[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:
Marco Pennekamp
2023-10-11 14:31:02 +02:00
committed by Space Team
parent ef484c7518
commit f04b27b90b
45 changed files with 902 additions and 0 deletions
@@ -0,0 +1,10 @@
class Foo {
inner class Inner {
fun foo() {}
}
}
/**
* [Foo.Inner.<caret>foo]
*/
fun usage() {}