Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/smartCast.kt
T
2015-07-21 08:32:50 +03:00

8 lines
118 B
Kotlin
Vendored

// WITH_RUNTIME
import java.io.File
fun foo(o: Any) {
if (o is File) {
o.getAbsolutePath()<caret>
}
}