Files
kotlin-fork/idea/testData/quickfix/modifiers/suspend/init.kt
T
2017-02-08 11:07:26 +03:00

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()
}
}