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