| 2 | #include <cstdio> |
| 3 | |
| 4 | class Rect { |
| 5 | public: |
| 6 | Rect() : width(0), height(0) {} |
| 7 | int area() { return width*height; } |
| 8 | void set_vals(int w, int h); |
| 9 | private: |
| 10 | int width; |
| 11 | int height; |
| 12 | }; |
| 13 | |
| 14 | void |
| 15 | Rect::set_vals(int w, int h) |
nothing calls this directly
no outgoing calls
no test coverage detected