Files
kotlin-fork/idea/testData/quickfix/modifiers/suspend/topLevel.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

8 lines
259 B
Kotlin
Vendored

// "Make bar suspend" "false"
// ACTION: Convert property initializer to getter
// ACTION: Introduce import alias
// ERROR: Suspend function 'foo' should be called only from a coroutine or another suspend function
suspend fun foo() = 42
val x = <caret>foo()