bb808b5620
Moved tests for completion and their test data into module idea-completion
14 lines
168 B
Kotlin
Vendored
14 lines
168 B
Kotlin
Vendored
fun foo(xx: String){}
|
|
|
|
fun bar(handler: (String) -> Unit){}
|
|
|
|
fun f() {
|
|
val v = ""
|
|
val xx = ""
|
|
bar { foo(<caret>) }
|
|
}
|
|
|
|
// ORDER: xx
|
|
// ORDER: it
|
|
// ORDER: v
|