3d8d92c7d3
- test data files renamed from *.jet to *.kt
8 lines
91 B
Kotlin
8 lines
91 B
Kotlin
class C(val f : () -> Unit)
|
|
|
|
fun test(e : Any) {
|
|
if (e is C) {
|
|
(e.f)()
|
|
}
|
|
}
|