blob: 33a6418a93e3fd56de460eb8d87c0d5dc19f37f8 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
fun box() = useSuspendFunInt(Test())
fun useSuspendFunInt(fn: suspend () -> String): String = ""
open class Test : () -> String {
override fun invoke() = "OK"
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, functionalType, operator, override, stringLiteral, suspend */