bb808b5620
Moved tests for completion and their test data into module idea-completion
15 lines
205 B
Kotlin
Vendored
15 lines
205 B
Kotlin
Vendored
class C {
|
|
fun String.extFun() { }
|
|
|
|
companion object {
|
|
fun String.foo() {
|
|
<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
fun String.nonMemberExtFun() {}
|
|
|
|
// EXIST: nonMemberExtFun
|
|
// ABSENT: extFun
|