Files
kotlin-fork/idea/idea-completion/testData/kdoc/ExtensionsForSubClassFQLink.kt
T
Simon Ogorodnik 1a211ee7b0 Completion for fqNames in KDoc links
Tests, also proved that KT-14432 are fixed
Added completion and tests for extension functions.
2016-11-29 14:06:54 +03:00

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