| 16 | // #A Inverting IsSame with not |
| 17 | requires(not IsSame<T, U>) |
| 18 | auto add(const T& t, const U& u) |
| 19 | { |
| 20 | return t + u; |
| 21 | } |
| 22 | |
| 23 | template<typename T, typename U> |
| 24 | // #B Inverting IsSame with not |
nothing calls this directly
no outgoing calls
no test coverage detected