| 17 | }; |
| 18 | |
| 19 | class Calc { |
| 20 | public: |
| 21 | constexpr auto add(int i) { return i; } |
| 22 | constexpr auto add(int a, int b) { return a + b; } |
| 23 | }; |
| 24 | |
| 25 | int main() { |
| 26 | te::poly<Addable> addable{Calc{}}; |
nothing calls this directly
no outgoing calls
no test coverage detected