fbd992f8c7
#KT-23501 Fixed
9 lines
295 B
Kotlin
Vendored
9 lines
295 B
Kotlin
Vendored
// "Make bar suspend" "false"
|
|
// ACTION: Convert to lazy property
|
|
// 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()
|