| 172 | }; |
| 173 | |
| 174 | class Continue |
| 175 | { |
| 176 | public: |
| 177 | Continue() = default; |
| 178 | |
| 179 | template <typename U> |
| 180 | operator ControlFlow<U>() const |
| 181 | { |
| 182 | return ControlFlow<U>(ControlFlow<U>::Statement::CONTINUE, None()); |
| 183 | } |
| 184 | }; |
| 185 | |
| 186 | class Break |
| 187 | { |
nothing calls this directly
no outgoing calls
no test coverage detected