I didn't know this before, but it turns out that:
[C++11: 3.7.5]:The storage duration of member subobjects, base class subobjects and array elements is that of their complete object (1.8).
That means that x->a in the example below has dynamic storage duration.
I'm wondering whether there are any elsewhere-defined semantics that make reference to storage duration that imbue member a with different behaviour between object *x and y? An example would be the rules governing object lifetime.
struct T
{
int a;
};
int main()
{
std::unique_ptr<T> x(new T);
T y;
}
And how about if T were non-POD (and other kinds of UDTs)?
In short, my lizard brain expects any declaration looking like int a; to have automatic (or static) storage duration, and I wonder whether any standard wording accidentally expects this too.
Update:
Here's an example:
[C++11: 3.7.4.3/4]:[..] Alternatively, an implementation may have strict pointer safety, in which case a pointer value that is not a safely-derived pointer value is an invalid pointer value unless the referenced complete object is of dynamic storage duration [..]
On the surface of it, I wouldn't expect the semantics to differ between my x->a and my y.a, but it's clear that there are areas, that are not obviously related to object lifetime, where they do.
I'm also concerned about lambda capture rules, which explicitly state "with automatic storage duration" in a number of places, e.g.:
[C++11: 5.1.2/11]:If a lambda-expression has an associated capture-default and its compound-statement odr-uses (3.2)thisor a variable with automatic storage duration [..]
[C++11: 5.1.2/18]:Every occurrence ofdecltype((x))wherexis a possibly parenthesized id-expression that names an entity of automatic storage duration is treated as ifxwere transformed into an access to a corresponding data member of the closure type that would have been declared ifxwere an odr-use of the denoted entity.
and others.

newon the subobject – Lightness Races in Orbit Dec 6 '12 at 12:55x.ahas to be destroyed about the same timexis (immediately after x's destructor) , so it needs the same storage duration. If it had automatic storage duration (with what scope?) or static storage duration (kept until end of program) then that wouldn't be the case. Andint a;doesn't declare an object. It declares a data member ofT, which in turn leads to a subobject ofx, but it is not truly "the definition of the objectx.a". – Steve Jessop Dec 6 '12 at 13:09int a;inside a class is not a variable declaration, it's a data member declaration. It doesn't have or need an associated storage duration. – Steve Jessop Dec 6 '12 at 13:16struct A { string x; string f() { return x; } }; int main() { A a; a.f(); }. It can however also argued that the implicit this transformation transforms this toreturn this->x;. But clearly the designers of the wording didn't even think about this possible ambiguity, otherwise they would have clarified :) – Johannes Schaub - litb Dec 6 '12 at 15:48