| 149 | struct Continue {}; |
| 150 | |
| 151 | template <typename T = none::None> struct Break { |
| 152 | T result; |
| 153 | |
| 154 | constexpr operator T() const noexcept { return result; } |
| 155 | }; |
| 156 | |
| 157 | template <> struct Break<> { |
| 158 | none::None result{}; |
nothing calls this directly
no outgoing calls
no test coverage detected