e49cdf0ca2
#KT-40978 Fixed
14 lines
254 B
Kotlin
Vendored
14 lines
254 B
Kotlin
Vendored
// !LANGUAGE: +SuspendConversion
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun interface SuspendRunnable {
|
|
<!FUN_INTERFACE_WITH_SUSPEND_FUNCTION!>suspend<!> fun invoke()
|
|
}
|
|
|
|
fun foo(s: SuspendRunnable) {}
|
|
|
|
fun test(f: () -> Unit) {
|
|
foo { }
|
|
foo(f)
|
|
}
|