| 63 | // note: base class is not known in dependend template |
| 64 | using base = DefectiveSwitch<inum>; |
| 65 | void entry() override { |
| 66 | base::on_counter++; |
| 67 | DumpState(inum, "ON ", base::on_counter, base::defect_level); |
| 68 | }; |
| 69 | void react(Toggle const &) override { |
| 70 | base::template transit< Off<inum> >(); |
| 71 | }; |
nothing calls this directly
no test coverage detected