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