| 22 | long bottom(const rectangle& r) { return r.bottom(); } |
| 23 | long width(const rectangle& r) { return r.width(); } |
| 24 | long height(const rectangle& r) { return r.height(); } |
| 25 | unsigned long area(const rectangle& r) { return r.area(); } |
| 26 | |
| 27 | double dleft(const drectangle& r) { return r.left(); } |
no test coverage detected