| 24 | }; |
| 25 | |
| 26 | class Calc { |
| 27 | public: |
| 28 | constexpr auto add(int i) { return i; } |
| 29 | constexpr auto add(int a, int b) { return a + b; } |
| 30 | }; |
| 31 | |
| 32 | int main() { |
| 33 | te::poly<Addable> addable{Calc{}}; |
nothing calls this directly
no outgoing calls
no test coverage detected