| 43 | } // namespace v3 |
| 44 | |
| 45 | struct Square { |
| 46 | void draw(std::ostream &out, const std::string &v) const { |
| 47 | out << v << "::Square"; |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | struct Circle { |
| 52 | void draw(std::ostream &out, const std::string &v) const { |
nothing calls this directly
no outgoing calls
no test coverage detected