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