4ee818addf
#KT-15938 Fixed
8 lines
125 B
Kotlin
Vendored
8 lines
125 B
Kotlin
Vendored
// !DIAGNOSTICS_NUMBER: 1
|
|
// !DIAGNOSTICS: ILLEGAL_SUSPEND_FUNCTION_CALL
|
|
suspend fun foo() {}
|
|
|
|
fun noSuspend() {
|
|
foo()
|
|
}
|