Files
kotlin-fork/idea/testData/inspectionsLocal/moveLambdaOutsideParentheses/suspendLambda.kt.after
T
Mikhail Glukhikh 76d1d6ff12 Allow to move suspend lambda out of parentheses
#KT-26674 Fixed
#KT-26676 Fixed
2018-09-13 16:38:29 +03:00

7 lines
108 B
Plaintext
Vendored

fun runSuspend(block: suspend () -> Unit) {}
fun println() {}
fun usage() {
runSuspend { println() }
}