Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/CalleeExpression.kt
T
2013-12-11 19:53:50 +04:00

8 lines
117 B
Kotlin

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