| 48 | }; |
| 49 | |
| 50 | struct On : Switch { |
| 51 | void react(Toggle const &) override { transit<Off>(); }; |
| 52 | }; |
| 53 | |
| 54 | struct Off : Switch { |
| 55 | void react(Toggle const &) override { transit<On>(); }; |
nothing calls this directly
no outgoing calls
no test coverage detected