bb808b5620
Moved tests for completion and their test data into module idea-completion
16 lines
145 B
Kotlin
Vendored
16 lines
145 B
Kotlin
Vendored
package foo
|
|
|
|
class A {
|
|
class B {
|
|
companion object
|
|
}
|
|
}
|
|
|
|
fun A.B.Companion.foo() {}
|
|
|
|
fun some() {
|
|
A.B.<caret>
|
|
}
|
|
|
|
// EXIST: foo
|