You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
decltype((b)) d = a; // d is an int& (decltype used with a variable in parentheses always returns a reference type, whereas decltype with a variable without
// parentheses return a reference if the variable is a reference itself)