This commit is contained in:
Valentin Kipyatkov
2015-06-16 17:34:30 +03:00
parent c91a359fea
commit e0f1bde20a
18 changed files with 74 additions and 74 deletions
@@ -0,0 +1,20 @@
package test
val nLocal = 12
class foo(nClassParam: String, val nClassField: String)
fun foo(nFirst: String) = 12
fun foo(nSecond: String? = null, nThird: Int = 1) { }
fun other() {
foo(n<caret>)
}
// EXIST: { lookupString:"nFirst", itemText:"nFirst =" }
// EXIST: { lookupString:"nSecond", itemText:"nSecond =" }
// EXIST: { lookupString:"nThird", itemText:"nThird =" }
// EXIST: nLocal
// todo - should exist
// ABSENT: nClassParam
// ABSENT: nClassField