8 lines
91 B
Kotlin
Vendored
8 lines
91 B
Kotlin
Vendored
class C(val f : () -> Unit)
|
|
|
|
fun test(e : Any) {
|
|
if (e is C) {
|
|
(e.f)()
|
|
}
|
|
}
|