| 173 | namespace _impl_ { |
| 174 | |
| 175 | template <auto code> struct Flow; |
| 176 | |
| 177 | template <typename T, Break<T> break_> struct Flow<break_> {}; |
| 178 | template <Continue continue_> struct Flow<continue_> {}; |
nothing calls this directly
no outgoing calls
no test coverage detected