8 lines
125 B
Kotlin
Vendored
8 lines
125 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
import java.io.File
|
|
|
|
class MyFile : File("file")
|
|
|
|
fun foo(file: MyFile) {
|
|
file.getAbsolutePath()<caret>
|
|
} |