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
13 lines
160 B
Kotlin
Vendored
13 lines
160 B
Kotlin
Vendored
class Foo {
|
|
fun foo(string: String) {}
|
|
|
|
fun foo(number: Int) {}
|
|
|
|
private fun foo(boolean: Boolean) {}
|
|
}
|
|
|
|
/**
|
|
* [Foo.<caret>foo]
|
|
*/
|
|
fun usage() {}
|