Files
kotlin-fork/compiler/testData/diagnostics/tests/suspendConversion/suspendAnonymousAsNonSuspend.kt
T
2023-05-11 12:19:40 +00:00

10 lines
129 B
Kotlin
Vendored

// ISSUE: KT-58055
fun <T> produce(arg: () -> T): T = arg()
fun main() {
produce {
suspend fun() {} // CCE
}
}