Files
kotlin-fork/idea/testData/intentions/removeEmptyParenthesesFromLambdaCall/suspend.kt
T

6 lines
117 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun suspend(body: () -> Int) {}
fun main() {
val wInvokeCall = suspend()<caret> { 42 }
}