Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/CalleeExpression.jet
T
Andrey Breslav cf3091adb5 Data flow info always taken into account in safeGetType()
The dangerous method removed
2012-05-13 12:58:50 +04:00

8 lines
91 B
Plaintext

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