Files
kotlin-fork/idea/idea-completion/testData/basic/common/InSecondaryConstructorDelegationCall.kt
T
Valentin Kipyatkov 016401a2b7 Fixed test data
2015-10-07 23:09:56 +03:00

16 lines
295 B
Kotlin
Vendored

fun topLevel() = 1
class A(val prop: Int, arg: Int) {
val another = 1
constructor(abc: Int): this(1, <caret>) {
val local = 1
}
fun foo() = 1
}
// EXIST: abc, topLevel, prop, another, foo
// ABSENT: { itemText: "arg" }
// EXIST: { itemText: "arg =" }
// ABSENT: local