| 140 | } |
| 141 | |
| 142 | task<int> testDoWhile() |
| 143 | { |
| 144 | task<int> v = get_random(); |
| 145 | |
| 146 | do { |
| 147 | int yy{}; |
| 148 | } while(co_await v); |
| 149 | |
| 150 | |
| 151 | co_return 0; |
| 152 | } |
| 153 | |
| 154 | task<int> testForLoop() |
| 155 | { |
nothing calls this directly
no test coverage detected