1a211ee7b0
Tests, also proved that KT-14432 are fixed Added completion and tests for extension functions.
20 lines
172 B
Kotlin
Vendored
20 lines
172 B
Kotlin
Vendored
package a
|
|
|
|
class B {
|
|
/**
|
|
* [a.B.<caret>]
|
|
*/
|
|
fun member() {
|
|
|
|
}
|
|
}
|
|
|
|
fun B.ext() {
|
|
|
|
}
|
|
|
|
val B.extVal: String
|
|
get() = ""
|
|
|
|
// EXIST: ext
|
|
// EXIST: extVal |