13 lines
200 B
Kotlin
Vendored
13 lines
200 B
Kotlin
Vendored
import java.io.File
|
|
|
|
class MyFile : File("file") {
|
|
private val privateField = 0
|
|
}
|
|
|
|
fun foo(f: MyFile) {
|
|
val a = 1<caret>
|
|
}
|
|
|
|
// INVOCATION_COUNT: 2
|
|
// EXIST: privateField
|
|
// EXIST: prefixLength |