Files
kotlin-fork/idea/testData/quickfix/modifiers/suspend/inLambda.kt
T
Toshiaki Kameyama b9a220c624 AddSuspendModifierFix: suggest in inline lambda
#KT-38139 Fixed
2020-07-16 18:49:29 +03:00

11 lines
138 B
Kotlin
Vendored

// "Make test suspend" "true"
suspend fun foo() {}
inline fun bar(f: () -> Unit) {
}
fun test() {
bar {
<caret>foo()
}
}