Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/suspendFun.kt
T
2017-01-31 13:42:38 +01:00

11 lines
146 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
suspend fun String.bar() {
}
suspend fun x() {
listOf("Jack", "Tom").forEach <caret>{ it.bar() }
}