Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/CalleeExpression.fir.kt
T

8 lines
91 B
Kotlin
Vendored

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