What is the memory representation of this structure?

struct S { constexpr static unsigned x = -1; S&& s; } 
  • for unsigned x = -1 want to give a little bit of my hands ... - pavel
  • IMHO may depend on the implementation, so you need to look at the debugger. - Vladimir Martyanov
  • constexpr static - in general, more than can be inline. S&& - is the link - size size_t ? - pavel
  • This task is from the exam tickets. Doesn't x have at the same time its maximum value in unsigned? - Frostah
  • one
    x will definitely be outside the structure, even if the compiler foolishly allocates memory for it - because it is static . So all that will be stored is a link, but physically, as I understand it, there is always an address ... So, the whole structure will consist of one address. - Harry

0