8 lines
118 B
Kotlin
Vendored
8 lines
118 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
import java.io.File
|
|
|
|
fun foo(o: Any) {
|
|
if (o is File) {
|
|
o.getAbsolutePath()<caret>
|
|
}
|
|
} |