member function uses generic algorithms
| 57 | // member function |
| 58 | // uses generic algorithms |
| 59 | struct T2 |
| 60 | { |
| 61 | std::vector<int> v; |
| 62 | std::string s; |
| 63 | |
| 64 | T2() |
| 65 | : v({1,2,3, 4}) |
| 66 | , s("test") |
| 67 | { |
| 68 | } |
| 69 | }; |
| 70 | |
| 71 | void |
| 72 | tag_invoke( |
nothing calls this directly
no outgoing calls
no test coverage detected