blob: 7343419e83560e510d7e7e1dd27186b161f784d7 [file]
class C(val f : () -> Unit)
fun test(e : Any) {
if (e is C) {
(e.f)()
}
}