hackerham
12/16/2016, 11:30 AMThere is an implementation artefact in M04 that you can only do tail suspend calls in suspending function, but we’ll lift it in the future.Does that mean it'll be possible to omit "suspendable" part there?
suspend funcB(): Long
suspend funcC(): Long
suspend funcA() = suspendable<Long> {
val x = funcB()
val y = funcC()
x+y
}