9 lines
159 B
Kotlin
Vendored
9 lines
159 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: true
|
|
import java.io.File
|
|
|
|
val File.absolutePath: String get() = ""
|
|
|
|
fun foo(file: File) {
|
|
file.getAbsolutePath()<caret>
|
|
} |