| 20 | { |
| 21 | constexpr static Kind k = Kind::Rectangle; |
| 22 | Rectangle(int width, int height) |
| 23 | : Shape{Shape::Kind::Rectangle}, width(width), height(height) {} |
| 24 | int width, height; |
| 25 | }; |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected