| 228 | virtual ~Shape() = default; |
| 229 | }; |
| 230 | struct Circle : Shape |
| 231 | { |
| 232 | bool is() const final { return false; } |
| 233 | }; |
| 234 | struct Square : Shape |
| 235 | { |
| 236 | bool is() const final { return false; } |
nothing calls this directly
no outgoing calls
no test coverage detected