147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
12 lines
238 B
Kotlin
Vendored
12 lines
238 B
Kotlin
Vendored
// "Make bar suspend" "false"
|
|
// ACTION: Introduce import alias
|
|
// ERROR: Suspend function 'foo' should be called only from a coroutine or another suspend function
|
|
|
|
suspend fun foo() {}
|
|
|
|
class My {
|
|
init {
|
|
<caret>foo()
|
|
}
|
|
}
|