| 49 | }; |
| 50 | |
| 51 | struct Circle { |
| 52 | void draw(std::ostream &out, const std::string &v) const { |
| 53 | out << v << "::Circle"; |
| 54 | } |
| 55 | }; |
| 56 | |
| 57 | template <class T, class... Ts> |
| 58 | void draw(te::poly<T> const &drawable, const Ts... args) { |
nothing calls this directly
no outgoing calls
no test coverage detected