Files
kotlin-fork/idea/idea-completion/testData/kdoc/ExtensionsForNestedClassFQLink.kt
T

33 lines
334 B
Kotlin
Vendored

package a
class C {
class B {
/**
* [a.C.B.<caret>]
*/
fun member() {
}
}
fun B.ext() {
}
val B.extVal: String
get() = ""
}
fun C.B.topExt() {
}
val C.B.topExtVal: String
get() = ""
// EXIST: ext
// EXIST: extVal
// EXIST: topExt
// EXIST: topExtVal