| 41 | |
| 42 | template<int Value> |
| 43 | static ResultType value() { |
| 44 | static MaybeConst<ValueType> x{ Value }; |
| 45 | if constexpr (ref == rvalue) |
| 46 | return std::move(x); |
| 47 | else |
| 48 | return x; |
| 49 | } |
| 50 | |
| 51 | struct X { |
| 52 | ValueType member{ 0 }; |
no test coverage detected