| 64 | |
| 65 | |
| 66 | int main() |
| 67 | { |
| 68 | printf("%d\n", Add(2, 3, 4)); |
| 69 | |
| 70 | printf("%d\n", Add(2, 5)); |
| 71 | |
| 72 | auto a = Add(Rational{3, 4}, Rational{4, 4}, Rational{5, 4}); |
| 73 | printf("%d/%d\n", a.Numerator(), a.Denominator()); |
| 74 | } |
nothing calls this directly
no test coverage detected