| 143 | } |
| 144 | |
| 145 | TFuture<int> FutureFunc(const TFuture<int>& future) { |
| 146 | return MakeFuture(Value += future.GetValue()); |
| 147 | } |
| 148 | |
| 149 | TPromise<void> Signal = NewPromise(); |
| 150 | TFuture<void> FutureVoidFunc(const TFuture<int>& future) { |
no test coverage detected