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