Given
struct X {};
constexpr auto x = X{};
struct S {
static constexpr auto& rx = x;
};
gcc 4.8 says
error: non-constant in-class initialization invalid for static member 'S::rx'
static constexpr auto& rx = x;
^
error: (an out of class initialization is required)
error: 'S::rx' cannot be initialized by a non-constant expression when being declared
I expect x
to be a constant expression, suitable for such initialization. Is this a gcc bug? If not, what is going on here?
This is a bug, and it seems to be already reported.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With