cea879cbd5
#KT-38948 Fixed
10 lines
194 B
Kotlin
Vendored
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()
|
|
} |