| 393 | class Calc { |
| 394 | public: |
| 395 | constexpr explicit Calc(const int i = {}) : i_{i} {} |
| 396 | |
| 397 | constexpr auto add(int i) { return i + i_; } |
| 398 | constexpr auto add(int a, int b) { return (a + b) + i_; } |
nothing calls this directly
no outgoing calls
no test coverage detected