f04b27b90b
- 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
11 lines
123 B
Kotlin
Vendored
11 lines
123 B
Kotlin
Vendored
class Foo {
|
|
private class Nested {
|
|
val foo: Int = 5
|
|
}
|
|
}
|
|
|
|
/**
|
|
* [Foo.Nested.<caret>foo]
|
|
*/
|
|
fun usage() {}
|