Add test on named arguments completion for Kotlin library

This commit is contained in:
Alexander Udalov
2014-03-20 12:25:58 +04:00
parent 1c25723764
commit d2dc54c14f
5 changed files with 19 additions and 3 deletions
@@ -0,0 +1,6 @@
import lib.KotlinClass
fun test() = KotlinClass().foo(<caret>)
// ABSENT: p0
// EXIST: paramName
@@ -0,0 +1,5 @@
package lib
class KotlinClass {
fun foo(paramName: String) {}
}