| 21 | }; |
| 22 | |
| 23 | struct Square { |
| 24 | int value; |
| 25 | void draw(std::ostream &out) { |
| 26 | out << "Square"; |
| 27 | value += 1; |
| 28 | } |
| 29 | }; |
| 30 | |
| 31 | struct Circle { |
| 32 | void draw(std::ostream &out) { out << "Circle"; } |
nothing calls this directly
no outgoing calls
no test coverage detected