bb808b5620
Moved tests for completion and their test data into module idea-completion
13 lines
194 B
Kotlin
Vendored
13 lines
194 B
Kotlin
Vendored
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 |