bb808b5620
Moved tests for completion and their test data into module idea-completion
12 lines
131 B
Kotlin
Vendored
12 lines
131 B
Kotlin
Vendored
var fooBar = ""
|
|
|
|
object C {
|
|
fun getFooBar() = ""
|
|
}
|
|
|
|
fun f(s: String){
|
|
if (C.getFooBar() == <caret>)
|
|
}
|
|
|
|
// ORDER: fooBar, s
|