summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/suspendWithStateMachine/Counter.kt
blob: c43e7a6a7d911444c5bfc4c8c320ca03c72ca3ef (plain)
1
2
3
4
5
6
7
8
9
10
package test

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