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

8 lines
120 B
Plaintext
Vendored

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