| 6 | struct base { |
| 7 | double x, y; |
| 8 | base() { x = y = 0; } |
| 9 | base(double x, double y): x(x), y(y) { } |
| 10 | }; |
| 11 | inline base operator + (base a, base b) { return base(a.x + b.x, a.y + b.y); } |
nothing calls this directly
no outgoing calls
no test coverage detected