We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
int &ff(); int &x = ff(); struct A { int& x; }; constexpr A g = {x}; const A* gg = &g;
Should be rejected, currently accepted. (And related variations miscompile.)
Status