Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures/smartcastFromArgument.kt
T
2020-03-19 09:51:01 +03:00

12 lines
155 B
Kotlin
Vendored

// !DUMP_CFG
interface A {
fun foo()
}
fun takeA(a: A): Boolean = true
fun test(a: Any) {
if (takeA(a as? A ?: return)) {
a.foo()
}
}