Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt1976.kt
blob: 836129604bb5839848ab841a01c04de1d0a7b012 [
file
]
// IGNORE_BACKEND_FIR: 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
}