Add test on named arguments completion for Kotlin library
This commit is contained in:
@@ -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) {}
|
||||
}
|
||||
Reference in New Issue
Block a user