| 7 | // declaration of the template |
| 8 | template<class T> struct container { |
| 9 | container(T t) {} |
| 10 | template<class Iter> container(Iter beg, Iter end); |
| 11 | }; |
| 12 | // additional deduction guide |
nothing calls this directly
no outgoing calls
no test coverage detected