Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/nullabilityAnnotations/suspendFunction.kt
T
2023-03-27 10:32:17 +00:00

12 lines
209 B
Kotlin
Vendored

// MODULE: lib
// FILE: 1.kt
interface I {
fun foo(x: (suspend () -> Unit)?): (suspend () -> Unit)?
}
// MODULE: main(lib)
// FILE: 2.kt
class C : I {
override fun foo(x: (suspend () -> Unit)?) = x
}