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

10 lines
190 B
Kotlin
Vendored

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