Files
kotlin-fork/compiler/testData/diagnostics/tests/suspendConversion/implicitInvoke.kt
T
2024-03-07 07:49:44 +00:00

9 lines
184 B
Kotlin
Vendored

// FIR_IDENTICAL
fun box() = useSuspendFunInt(Test())
fun useSuspendFunInt(fn: suspend () -> String): String = ""
open class Test : () -> String {
override fun invoke() = "OK"
}