| 493 | template <typename... Instructions> struct Block; |
| 494 | |
| 495 | template <> struct Block<> { |
| 496 | template <typename Runtime> using Run = Runtime; |
| 497 | }; |
| 498 | |
| 499 | template <typename Instruction, typename... Instructions> |
| 500 | struct Block<Instruction, Instructions...> { |
nothing calls this directly
no outgoing calls
no test coverage detected