blob: b95cfe3866db6f7141eafb9f88b758d01f3e98d7 [file]
package test.pkg
class Context {
suspend fun inner(): Int = suspendPrivate()
private suspend fun suspendPrivate(): Int = inner()
}
suspend fun top(): Int = Context().inner()