Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
diagnosticMessage
/
illegalSuspendCall.kt
blob: d9a956c421ca922291c64e174017e887535f961f [
file
] [
log
] [
blame
]
// !DIAGNOSTICS_NUMBER: 1
// !DIAGNOSTICS: ILLEGAL_SUSPEND_FUNCTION_CALL
suspend fun foo
()
{}
fun noSuspend
()
{
foo
()
}