Files
kotlin-fork/compiler/testData/codegen/regressions/kt1976.kt
T
2012-06-05 11:51:36 +02:00

9 lines
192 B
Kotlin

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 jet.Function0
}