| 8 | namespace constant { |
| 9 | struct Q {}; |
| 10 | template<int N> constexpr int get(Q &&) { return N * N; } |
| 11 | } |
| 12 | template<> struct std::tuple_size<constant::Q> { static const int value = 3; }; |
| 13 | template<size_t N> struct std::tuple_element<N, constant::Q> { typedef int type; }; |
nothing calls this directly
no outgoing calls
no test coverage detected