bb808b5620
Moved tests for completion and their test data into module idea-completion
14 lines
182 B
Kotlin
Vendored
14 lines
182 B
Kotlin
Vendored
package p
|
|
|
|
class B
|
|
|
|
class R {
|
|
companion object {
|
|
fun B.f() {
|
|
this.<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
// EXIST: { itemText: "f", tailText: "() for B in R.Companion" }
|