9 lines
147 B
Plaintext
Vendored
9 lines
147 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: true
|
|
import java.io.File
|
|
|
|
val File.absolutePath: String get() = ""
|
|
|
|
fun foo(file: File) {
|
|
file.absolutePath
|
|
} |