| 12 | class Rectangle : public ::Rectangle { |
| 13 | public: |
| 14 | constexpr Rectangle(const ::Rectangle& rect) : ::Rectangle{rect.x, rect.y, rect.width, rect.height} {} |
| 15 | |
| 16 | constexpr Rectangle(float x = 0, float y = 0, float width = 0, float height = 0) : ::Rectangle{x, y, width, height} {} |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected