Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/accessThroughKotlinClassInstance.kt
T

8 lines
125 B
Kotlin
Vendored

// WITH_RUNTIME
import java.io.File
class MyFile : File("file")
fun foo(file: MyFile) {
file.getAbsolutePath()<caret>
}