| 25 | }; |
| 26 | |
| 27 | struct Circle { |
| 28 | void draw(std::ostream &out) const { out << "Circle"; } |
| 29 | }; |
| 30 | |
| 31 | template <te::conceptify<Drawable> TDrawable> |
| 32 | void draw(TDrawable const &drawable) { |
nothing calls this directly
no outgoing calls
no test coverage detected