bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
106 B
Kotlin
Vendored
12 lines
106 B
Kotlin
Vendored
class X {
|
|
fun String.f() {}
|
|
}
|
|
|
|
fun fn() {
|
|
with (X()) {
|
|
"sss".<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: f
|