| 83 | int Funa(int); |
| 84 | |
| 85 | task<int> testVarDeclAndConditional() |
| 86 | { |
| 87 | task<int> v = get_random(); |
| 88 | task<int> u = get_random(); |
| 89 | |
| 90 | int xres = (co_await v + co_await u); |
| 91 | |
| 92 | auto t = co_await v ? co_await v+1 : co_await v+2; |
| 93 | |
| 94 | co_return xres + co_await v; |
| 95 | } |
| 96 | task<int> testIfStmt() |
| 97 | { |
| 98 | task<int> v = get_random(); |
nothing calls this directly
no test coverage detected