Files
2022-01-12 15:09:45 +01:00

11 lines
141 B
Kotlin
Vendored

package test
class Counter {
suspend fun one() {}
suspend fun two() {}
suspend fun both() {
one()
two()
}
}