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

8 lines
113 B
Plaintext
Vendored

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