bb808b5620
Moved tests for completion and their test data into module idea-completion
9 lines
151 B
Kotlin
Vendored
9 lines
151 B
Kotlin
Vendored
val paramVal = 12
|
|
fun foo(paramTest: Int = 12)
|
|
fun paramFun() {}
|
|
|
|
fun test() {
|
|
// Type '=', completion should be finishied
|
|
foo(param<caret>)
|
|
}
|