| 95 | //! [overloading] |
| 96 | template <typename T> |
| 97 | void f(std::vector<T> xs) { |
| 98 | // ... |
| 99 | } |
| 100 | |
| 101 | template <typename R, typename = std::enable_if_t<hana::is_a<hana::range_tag, R>()>> |
| 102 | void f(R r) { |
nothing calls this directly
no outgoing calls
no test coverage detected