| 13 | // #A The arguments are swapped T, U vs U, T |
| 14 | requires IsSame<U, T> |
| 15 | auto add(const T& t, const U& u) |
| 16 | { |
| 17 | return t + u; |
| 18 | } |
| 19 | |
| 20 | template<typename T, typename U> |
| 21 | // #B The arguments remain unchanged |
nothing calls this directly
no outgoing calls
no test coverage detected