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

12 lines
220 B
Kotlin
Vendored

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