11 lines
243 B
Kotlin
Vendored
11 lines
243 B
Kotlin
Vendored
import java.io.File
|
|
|
|
fun foo(o: Any) {
|
|
if (o is File) {
|
|
o.<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: { lookupString: "absolutePath", itemText: "absolutePath", tailText: " (from getAbsolutePath())", typeText: "String!" }
|
|
// ABSENT: getAbsolutePath
|