| 70 | |
| 71 | |
| 72 | int main() |
| 73 | { |
| 74 | printf("%d\n", add(2, 3, 4)); |
| 75 | |
| 76 | printf("%d\n", add(2, 5)); |
| 77 | |
| 78 | auto a = add(Rational{3, 4}, Rational{4, 4}, Rational{5, 4}); |
| 79 | printf("%d/%d\n", a.Numerator(), a.Denominator()); |
| 80 | } |
nothing calls this directly
no test coverage detected