4ee818addf
#KT-15938 Fixed
11 lines
204 B
Kotlin
Vendored
11 lines
204 B
Kotlin
Vendored
// "Make bar suspend" "false"
|
|
// ERROR: Suspend function 'foo' should be called only from a coroutine or another suspend function
|
|
|
|
suspend fun foo() {}
|
|
|
|
class My {
|
|
init {
|
|
<caret>foo()
|
|
}
|
|
}
|