| 472 | |
| 473 | template <class T> |
| 474 | struct DrawableT { |
| 475 | void draw(T &out) const { |
| 476 | te::call([](auto const &self, T &out) { self.draw(out); }, *this, out); |
| 477 | } |
| 478 | }; |
| 479 | |
| 480 | template struct DrawableT<std::ostream>; |
| 481 | template struct DrawableT<std::stringstream>; |
nothing calls this directly
no outgoing calls
no test coverage detected