12 lines
215 B
Plaintext
Vendored
12 lines
215 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
import java.io.File
|
|
|
|
class MyFile : File("file") {
|
|
override fun getCanonicalFile(): File {
|
|
return super.getCanonicalFile()
|
|
}
|
|
}
|
|
|
|
fun foo(file: MyFile) {
|
|
file.canonicalFile<caret>
|
|
} |