Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/CalleeExpression.kt
T
2014-10-01 18:52:52 +04:00

8 lines
118 B
Kotlin
Vendored

class C(val f : () -> Unit)
fun test(e : Any) {
if (e is C) {
(<!DEBUG_INFO_SMARTCAST!>e<!>.f)()
}
}