Files
kotlin-fork/idea/testData/quickfix/modifiers/suspend/anonymousFunction.kt
T
2020-06-01 21:42:02 +09:00

10 lines
194 B
Kotlin
Vendored

// "Make containing function suspend" "false"
// ACTION: Convert to run
// ACTION: Convert to with
// DISABLE-ERRORS
class A {
suspend fun foo() {}
}
val p = fun(a: A) {
a.<caret>foo()
}