Files
kotlin-fork/idea/testData/completion/basic/common/PrivatesInSecondPressCompletion.kt
T
2015-04-01 17:46:10 +03:00

13 lines
194 B
Kotlin

import java.io.File
class MyFile : File("file") {
private val privateField = 0
}
fun foo(f: MyFile) {
f.<caret>
}
// INVOCATION_COUNT: 2
// EXIST: privateField
// ABSENT: prefixLength