| 98 | template <typename Name> struct Ref { |
| 99 | Name name; |
| 100 | constexpr auto operator*() const noexcept { return Var{name}; } |
| 101 | }; |
| 102 | |
| 103 | template <typename Name, typename Value> struct BoundVar { |
nothing calls this directly
no outgoing calls
no test coverage detected