Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
a3b14561c4d5f2ab5a7edc53fca7d3c891589f2c
/
.
/
plugins
/
uast-kotlin
/
testData
/
Suspend.kt
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
()