| 128 | |
| 129 | namespace { |
| 130 | struct A { |
| 131 | using InputType = AInput; |
| 132 | using UpdateType = AUpdate; |
| 133 | template <symmetry_tag sym> using OutputType = AOutput<sym>; |
| 134 | using ShortCircuitOutputType = AScOutput; |
| 135 | |
| 136 | static constexpr auto name = "A"; |
| 137 | }; |
| 138 | struct B { |
| 139 | using InputType = BInput; |
| 140 | using UpdateType = BUpdate; |
nothing calls this directly
no outgoing calls
no test coverage detected