| 43 | public: |
| 44 | template<size_t N> |
| 45 | constexpr decltype(auto) get() const noexcept |
| 46 | { |
| 47 | if constexpr(N == 1) { |
| 48 | return GetX(); |
| 49 | } else if constexpr(N == 0) { |
| 50 | return mY; |
| 51 | } |
| 52 | } |
| 53 | }; |
| 54 | |
| 55 | int main() |
nothing calls this directly
no outgoing calls
no test coverage detected