Files
kotlin-fork/compiler/testData/codegen/box/classes/kt1976.kt
T
2018-06-28 12:26:41 +02:00

10 lines
221 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
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
}