mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
9 lines
195 B
Kotlin
Vendored
9 lines
195 B
Kotlin
Vendored
class A {
|
|
public val f : ()->String = {"OK"}
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = A()
|
|
return a.f() // does not work: (in runtime) ClassCastException: A cannot be cast to kotlin.Function0
|
|
}
|