Files
kotlin-fork/idea/testData/quickfix/modifiers/suspend/init.kt
T
Dmitry Gridin 147521d6cb Add intention to introduce import alias
#KT-16118 Fixed
 #KT-30007 Fixed
2019-02-21 12:25:09 +03:00

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